Mercurial > p > roundup > code
view roundup/anypy/my_input.py @ 6170:dadcb4fe9f1d
Ading index entries.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Fri, 15 May 2020 21:22:41 -0400 |
| parents | 4cf48ff01e04 |
| children |
line wrap: on
line source
try: # Python 2. my_input = raw_input except NameError: # Python 3+. my_input = input
