Answers for "take an array of int as input in python"

11

get list input from user in python

a = list(map(int,input("nEnter the numbers : ").strip().split()))
Posted by: Guest on September-17-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 "take an array of int as input in python"

Python Answers by Framework

Browse Popular Code Answers by Language