take array of string in python
x = list(map(str, input("Enter the values with spaces between them: ").split()))
take array of string in python
x = list(map(str, input("Enter the values with spaces between them: ").split()))
create an array string using for in python
a = ["a_" + str(i) for i in range(10)]
print(a)
array in array python
#You can put multiple arrays in one array
tests = [[1,2,3],["r",22,33]]
#prints: [[1,2,3],['r',22,33]]
how to create an array in python
array = ["1st", "2nd", "3rd"]
#prints: ['1st', '2nd', '3rd']
array.append("4th")
#prints: ['1st', '2nd', '3rd', '4th']
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us