num_one = 1result = num_one + (num_two:=2)print(result)
num_one = 1 num_two = 2 result = num_one + num_two print(result)
这样写!
num_two:2这个变量未定义