I am a complete noob in python and in programming, so I'm sure this question it may irritate some, so I am reading this book which has this example which it does not run with out raw_input
#!/usr/bin/python
# -*- coding: utf-8 -*-
# Filename: continue.py
#!/usr/bin/python
# Filename: break.py
while True:
s = (raw_input('Enter something : '))
if s == 'quit':
break
print('Length of the string is', len(s))
print('Done')
What I mean is that when I add just input
like in the book the code doesn't run. Why is that?