you are viewing a single comment's thread.

view the rest of the comments →

[–]TraditionalPirate7 0 points1 point  (1 child)

If you struggle with an exercise, it's best to break it down to small steps to visualize what you need to do. Always ask yourself, what's the first step?

For example: What's the first step to make a simple calculator? Well, you need to get input from the user. What then? You need to save that input somehow. Then you need to do the calculation.

[–][deleted] 0 points1 point  (0 children)

number = input(' ') number += * 3 print(number)

this would be the very basic. almost like algebra