how to take input in python as string and convert into integer list
l=list(map(int,input().split()))
how to take input in python as string and convert into integer list
l=list(map(int,input().split()))
python input list of ints
#function to input list of type [cast]
def inputList(msg,cast):
i = input(msg)[1:-1]
a = [cast(e) for e in i.split(',')]
return a
#example code:
#l = inputList("enter a list of numbers: ",int)
#example prompt:
#enter a list of numbers: [1,2,3,4,5]
#expected result for l:
#l = [1,2,3,4,5]
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