- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
>>> quit()
Traceback (most recent call last):
File "<stdin>", line 1, in ?
TypeError: 'str' object is not callable
>>> quit
'Use Ctrl-D (i.e. EOF) to exit.'
>>> type(quit)
<type 'str'>
>>> type(exit)
<type 'str'>
Follow us!