Answers for "how to take string input in array in python"

3

input array of string in python

x = list(map(str, input("Enter the values with spaces between them: ").split()))
Posted by: Guest on October-20-2021
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

Code answers related to "how to take string input in array in python"

Python Answers by Framework

Browse Popular Code Answers by Language