Challenge: 3 "5000 Points"

Desired output: Print the value of “x” ONLY when x=5
 avatar
user_4476291
python
a year ago
170 B
10
Indexable
### Challenge: 3 "5000 Points"

i == 9 
for x in range(2, 30, 3) 
  i+=1
  if i = 11:
  print(x)  


### Desired output: Print the value of “x” ONLY when x=5
Leave a Comment