Guest User

Untitled

a guest
Jan 18th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.10 KB | None | 0 0
  1. s = "Opel Corsa Van"
  2. Make, Model = s.split(" ", 1)
  3. print(Make)
  4. print(Model)
  5.  
  6. 'Opel'
  7. 'Corsa Van'
Add Comment
Please, Sign In to add comment