Answers for "input arrays using functions in python"

1

taking array input in python

x=[int(input()) for i in range(int(input("How many elements are in list : ")))] print(x) 
Posted by: Guest on August-26-2020
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 "input arrays using functions in python"

Python Answers by Framework

Browse Popular Code Answers by Language