Posts by Lucas Felipe • 39 points
1 post
-
0
votes2
answers120
viewsQ: Beginner in Python
I can’t find a way to check several variables at once. Look what I tried: Example nota1 = 10 nota2 = 20 nota3 = 30 for i in (1, 2, 3) if nota{i} == 0 print('É zero') In this case, there are many…