My code is as follows:
#!/usr/bin/python
#Filename:2_7.py
text=raw_input("Enter string:")
for ?? in range(??)
print
For example, if the user enters test text, I want test text to be printed on the screen by this code.
What should I write instead of ?? to achieve this purpose?