input "supper"
def input(s): return input(s) input("supper") input("supper") A: You can use the raw_input() function to get the input from the user. It is a built-in function in Python. >>> raw_input('Enter something: ') Enter something: hello hello A: You can use raw_input() to get