Guest User

Untitled

a guest
Jan 16th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. if len(input) < 6:
  2. print("invalid input")
  3. break
  4.  
  5. comm = input[5:] #all commands will be 5 chars
  6. rest = input[:5]
  7.  
  8. print(comm)
Add Comment
Please, Sign In to add comment