Answers for "taking multiple inputs at a time separated by comma"

0

taking multiple inputs at a time separated by comma

# taking multiple inputs at a time separated by comma
x = [int(x) for x in input("Enter multiple value: ").split(",")]
print("Number of list is: ", x)
Posted by: Guest on July-31-2021

Code answers related to "taking multiple inputs at a time separated by comma"

Browse Popular Code Answers by Language