0
What does tal mean?
sum, tal = 0,0
2 odpowiedzi
+ 4
tal is the name of a variable and it is assigned the value 0.
The code snippet above can be rewritten as:
sum = 0
tal = 0
sum, tal = 0, 0 is just a concise way of writing the above
+ 1
thank you!
sum, tal = 0,0