a = 5
a = "fooo"
a, b = "fooo", 5.0
c = 4.0
print a, b
print (b, c)
c, d = (1, 2)
# works as well (we use the programmers choice)
c, d = 1, 2
print c, d
(f, g) = (1, 2)
##r
a = 5
a = "fooo"
a, b = "fooo", 5.0
c = 4.0
print a, b
print (b, c)
c, d = (1, 2)
# works as well (we use the programmers choice)
c, d = 1, 2
print c, d
(f, g) = (1, 2)
