In order to display multiples of 9 up to 500 I would use a while loop with the condition number < 500. For example:
#set number to the first multiple of 9
number = 9;
while number < 500:
print number;
#add 9 to the number
number += 9;
Note: I put semicolons at the end of each line out of habit. Python does not require this.
Note: lines beginning with # are comments
The above code will print the current value of number, then add 9 to it. It will continue to do this until number is greater than or equal to 500.
Chat with our AI personalities
Generating Sine and Cosine Signals (Use updated lab)
Yes
Yes, it is possible to do that.
Multiply the numbers together. Double that result. Triple it.
program to find maximum of two numbers using pointers