Answers for "separate str and int input with comma python"

3

python input comma separated values

lst = input().split(',')
Posted by: Guest on February-04-2020
3

how to split an input in python by comma

lst = input().split(',')#can use any seperator value inside '' of split
print (lst)
#given input = hello,world
#output: ['hello', 'world']
#another example 
lst = input().split(' ; ')#can use any seperator value inside '' of split
print (lst)
#given input = hello ; world ; hi there
#output: ['hello', 'world', 'hi there']
Posted by: Guest on July-06-2020

Code answers related to "separate str and int input with comma python"

Python Answers by Framework

Browse Popular Code Answers by Language