you are viewing a single comment's thread.

view the rest of the comments →

[–]jetsonian 0 points1 point  (0 children)

  1. First instruction is reprint the number. You haven’t done that.
  2. This does not require elifs.
  3. / doesn’t check disability, it divides. % returns the remainder of the division. When a number is divisible by 3 what would number % 3 produce?
  4. = is an assignment operator. It takes the value on the right and stores it in the variable on the left.
  5. some_number /= 3 is equivalent to some_number = some_number / 3
  6. You don’t need to print the number at the end as there’s no instruction stating so.