Answers for "array with string in python"

3

take 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
2

create an array string using for in python

a = ["a_" + str(i) for i in range(10)]
print(a)
Posted by: Guest on July-24-2021

Code answers related to "array with string in python"

Python Answers by Framework

Browse Popular Code Answers by Language