Mercurial > p > roundup > code
view roundup/anypy/my_input.py @ 6656:b83b90d57846
Fix header value. needs to be string not integer.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Mon, 02 May 2022 16:17:13 -0400 |
| parents | 4cf48ff01e04 |
| children |
line wrap: on
line source
try: # Python 2. my_input = raw_input except NameError: # Python 3+. my_input = input
