Answers for "how to separate a string or int with comma in python"

2

how to separate a string or int with comma in python

string = input('Input')
    >>> 1,2
    print(cord.split(','))
    >>>['1', '2']
Posted by: Guest on March-31-2020

Code answers related to "how to separate a string or int with comma in python"

Python Answers by Framework

Browse Popular Code Answers by Language