please answer the python coding question of activity one...
Attachments:
Answers
Answered by
2
Answer:
sorry I don't what you are talking about but do you like to be my friend
Answered by
0
Answer:
number = 60
while number<=100:
print(f'the number is: {number}')
number = number+2
#COPY PASTE THE CODE
Explanation:
here we have created a variable named number.
while number is lesser than or equal to 100 print the number. after each iteration increment the variable value with 2.
Attachments:
Similar questions