SHOW:
|
|
- or go back to the newest paste.
1 | while True: | |
2 | reply = raw_input('Enter text:') | |
3 | if reply == 'stop': break | |
4 | try: | |
5 | num = int(reply) | |
6 | except: | |
7 | print('='*75) | |
8 | - | print(\n\n'Try a number') # i want to print after I draw a line |
8 | + | print('Try a number') |
9 | else: | |
10 | print(int(reply) ** 2) | |
11 | print('Bye') |