How to create tuple in python when user is giving input?
Answers
Answered by
1
print 'Enter source'
source = tuple(sys.stdin.readline())
print 'Enter target'
target = tuple(sys.stdin.readline())
Similar questions