Computer Science, asked by rishikggmailcom8177, 1 year ago

How to create tuple in python when user is giving input?

Answers

Answered by aravinthveer006
1

print 'Enter source'

source = tuple(sys.stdin.readline())


print 'Enter target'

target = tuple(sys.stdin.readline())

Similar questions