33.
What will be the output of the following Python code? (If entered name is examveda)
import sys
print 'Enter your name: ',
name = ''
while True:
   c = sys.stdin.read(1)
   if c == '\n':
      break
   name = name + c
 
print 'Your name is:', name

39.
What is the use of tell() method in python?