Guest User

Untitled

a guest
Dec 17th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. line = '5,-5'
  2. assert len([int(i) for i in line.split(',')]) == 2
  3.  
  4. input='5,-5'
  5. tuple(input.split(','))
Add Comment
Please, Sign In to add comment