####Some good uses of tuples: ####switching variables without using a third variable ##a = 1 ##b = 2 ##a,b = b,a ##print("after switch, a =", a, "and b =", b) ####Fibonacci numbers without a next variable ##x = int(input("enter an integer")) ##a = 1 ##b = 1 ##while b