Contact: aviboots(AT)netvision.net.il
40,774 questions
53,162 answers
573 users
first = 23; second = 5; third = 198 print(first, second, third) ''' run: 23 5 198 '''
first, second, third = [4, 87, 971] print(first, second, third) ''' run: 4 87 971 '''