Advertisement
user_137

Untitled

Feb 25th, 2013
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.10 KB | None | 0 0
  1. t1 = (1, 'two', 3)
  2. t2 = (t1, 3.25)
  3. print t2
  4. print (t1 + t2)
  5. print (t1 + t2)[3]
  6. print (t1 + t2)[2:5]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement