Files
Buffteks-Website/webpages/input_code.py
2024-09-09 15:47:58 -05:00

6 lines
75 B
Python

print("hello")
i = 100
while(i>10):
print(f"Value of {i}")
i = i-1