Answers for "split input insert into list python"

0

python split input to list

input_string = input('Enter elements of a list separated by space ')
print("n")
user_list = input_string.split()
# print list
print('list: ', user_list)

# convert each item to int type
for i in range(len(user_list)):
    # convert each item to int type
    user_list[i] = int(user_list[i])
Posted by: Guest on March-26-2021

Code answers related to "split input insert into list python"

Python Answers by Framework

Browse Popular Code Answers by Language