More String Operations Interactive input s = raw_input("Enter your name: ") Looping through a string for ch in name: print ch Type conversion to string >>> str(10) '10' from string >>> eval('10') 10 >>> eval('3 + 4 * 7') 31