Jak oddzielić ciąg lub int przecinkiem w Pythonie

 string = input('Input')
    >>> 1,2
    print(cord.split(','))
    >>>['1', '2']
Disturbed Donkey