belongs to collection: Python Tuple Exercises
Given:
tuple1 = (11, 22) tuple2 = (99, 88)
Expected output:
tuple1: (99, 88) tuple2: (11, 22)
Solution:
tuple1 = (11, 22) tuple2 = (99, 88) tuple1, tuple2 = tuple2, tuple1 print(tuple2) print(tuple1)
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Solution:
need an explanation for this answer? contact us directly to get an explanation for this answer