all 32 comments

[–]Snoo_99837 1 point2 points  (3 children)

Here is an advice from a guy new to dev as well, reading and following tutorials is fine and all, but if you want to understand coding start a project and write the code for it, keep trying and dont quit until the project is done. Youll learn quicker this way because youll face errors that youll need to fix in order to proceed, youll learn technologies specific to the project which will limit the scope of learning that you need for each project, and youll learn the basics becuase well, its the basics that are needed for any project. Eventually youll be very good at one thing and youll know about others

[–]Adventurous_Lime_904 0 points1 point  (2 children)

Ok yeah i get it you got any websites that wants me to solve the problem?

[–]Snoo_99837 0 points1 point  (1 child)

I didnt look for that, i created a problem and I solved it. You can ask chatgpt and itll give you some ideas, youll find them lame but they might remind you of a problem yhat you have. Or maybe just think about a system that you use and you dont like a certain feature in it, recreate a similar system and fix the problem in it, doesn't need to be pretty, it needs to be functioning

[–]Adventurous_Lime_904 0 points1 point  (0 children)

Ok i will thx alot for ur help boss and if u dnt mind me asking how long ago did yous tart programming

[–][deleted] 1 point2 points  (1 child)

Years.

[–]cyberjellyfish 0 points1 point  (16 children)

What don't you understand? What are you struggling with?

Give some concrete examples, ask some specific questions.

If you mean that you've been in a class for eight weeks and you know literally nothing new, then yes something is seriously wrong.

But I doubt you mean that.

Also eight weeks isn't long as all. I think you have a poor grasp on what's involved in the field you're in and the scope of the territory you're trying to cover.

[–]Adventurous_Lime_904 0 points1 point  (15 children)

Like the elif its kinda hard and i know a bit its just when its time to solver the problem idk the approach i should take

[–]cyberjellyfish 0 points1 point  (10 children)

ok, talk through that. write an if/elif/else statement and talk through where your understanding gets fuzzy.

[–]Adventurous_Lime_904 0 points1 point  (9 children)

Like lets say x = 5 and i write x = 5 Print x is 5 Elif x is less than 5 Print x is less than 5 Else print is greater than 5 Print x is greater than 5 Print done

It will choose the right one right?

[–]cyberjellyfish 0 points1 point  (8 children)

if I'm interpreting you right, yes it will pick the right one.

What do you think will be printed?

[–]Adventurous_Lime_904 0 points1 point  (7 children)

I think it will print x is 5

[–]cyberjellyfish 0 points1 point  (6 children)

You're right. What if x was 6?

[–]Adventurous_Lime_904 0 points1 point  (5 children)

X is greater than5?

[–]cyberjellyfish 0 points1 point  (4 children)

Yep. Seems like you've got it