6 lines
75 B
Python
6 lines
75 B
Python
print("hello")
|
|
|
|
i = 100
|
|
while(i>10):
|
|
print(f"Value of {i}")
|
|
i = i-1 |