197k views
1 vote
X = 100
if x > 0:
x -= 1
print(x)

1 Answer

5 votes

Answer:

Step-by-step explanation:

Program and Reault:

X = 100 if x > 0: x -= 1 print(x)-example-1
User Daniel Martin
by
4.7k points