Advertisement
Guest User

Untitled

a guest
Oct 17th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. t = ('Machine', 'Learning')
  2. print(t) # ('Machine', 'Learning')
  3. # Hoặc
  4. t1 = tuple(('Machine', 'Learning'))
  5. print(t1) # ('Machine', 'Learning')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement