Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- >>> people_in_line = ['bart', 'maggie', 'lisa', 'marge', 'homer']
- >>> *in_line, next_up = people_in_line
- >>> in_line
- ['bart', 'maggie', 'lisa', 'marge']
- >>> next_up
- 'homer'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement