Advertisement
ancestor_tunji

#question 12

Feb 28th, 2020
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.16 KB | None | 0 0
  1. #question 12
  2. identity = ("adetunji", "badmus", True, "corper", 18)
  3. *names, bool, position, age = identity
  4. print(names)
  5. print(bool)
  6. print(position)
  7. print(age)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement