Computer Science, asked by pallavihardikmodi, 2 months ago

Write a Python program input n numbers in tuple

Answers

Answered by bitapisarma
0

Answer:

Hope this answer was helpful

Explanation:

t = tuple ( ) n = input (“Enter any number”) print “Enter all numbers one after other” for i in range (n) : a = input (“Enter number”) t = t+(a, ) print “Output is”

Similar questions