# The 'Walrus' operator does not support multiple assignment but does not flag # an attempt to make a multiple assigment as an error: a, b = 100, 200 print (a, b) #result is #100 200 if (a, b := 3, 4): #this should be flagged as an error print ("found true") else: print ("found false") print (a, b) #result is #100 3