Answers for "how to take a list in python"

2

taking array input in python

x=[]  for i in range(int(input("How many elements are in list : "))):  x.append(int(input())) print(x) 
Posted by: Guest on August-26-2020

Code answers related to "how to take a list in python"

Python Answers by Framework

Browse Popular Code Answers by Language