python test user input code example
Example 1: python user input
input('ENter question here')
Example 2: python user input to tuple
tuple(int(x.strip()) for x in raw_input().split(','))
input('ENter question here')
tuple(int(x.strip()) for x in raw_input().split(','))