We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e351a2 commit 44c91caCopy full SHA for 44c91ca
1 file changed
simulacao.py
@@ -0,0 +1,9 @@
1
+i = 0
2
+while i != 9:
3
+ a = i + 1
4
+ if a % 2 != 0:
5
+ print(a)
6
+ else:
7
+ print(f"{a} hey")
8
+ i += 1
9
+print("Ola Mundo")
0 commit comments