Mercurial > p > roundup > code
view roundup/anypy/my_input.py @ 5489:8a91503c44b2
updated changelog for random number rework
| author | Christof Meerwald <cmeerw@cmeerw.org> |
|---|---|
| date | Sun, 05 Aug 2018 14:04:01 +0100 |
| parents | 4cf48ff01e04 |
| children |
line wrap: on
line source
try: # Python 2. my_input = raw_input except NameError: # Python 3+. my_input = input
