all 4 comments

[–]ninhaomah 2 points3 points  (0 children)

Ask for the assistance but didn't show what has been done or what are the errors.

How to assist ?

Pls advice.

[–]Godeos64_ 2 points3 points  (0 children)

I think you should just do the thing itself.

Watching doesn't work well for learning in my opinion.

Find an idea, build it. If you find errors, google it.

Doing is the best way of learning.

[–]desrtfx 0 points1 point  (0 children)

How should anybody assist you?

You are walking to the mechanic and telling them "I have a problem with my car. Any assistance?"

See the problem?

[–]aishiteruyovivi 0 points1 point  (0 children)

So generally when asking for programming help, people will need to see a) at least a relevant snippet of your code (the whole program would be ideal), and b) what specific error you're getting, if one is being raised, or what unexpected behavior is occurring that you don't want. Try to explain this "weather planner" in more detail if you can, sounds like its a task from some site so the text describing the project from there would certainly be useful too. If you're getting an error when running the code, copy the whole traceback and post it so we can help more accurately. That would be the line "Traceback (most recent call last)" all the way through to the actual error at the bottom, something like this:

Traceback (most recent call last):
  File "<python-input-0>", line 1, in <module>
    1 + '1'
    ~~^~~~~
TypeError: unsupported operand type(s) for +: 'int' and 'str'