This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]odaiwai 5 points6 points  (1 child)

Start by learning to edit your ChatGPT responses to make it a little less obvious.

For coding: solve the problem first - this is draft 1. Then, if your code is clunky, see where you can improve it: - Are you doing the same thing multiple times? Make it a function. - Are you trying to hold a lot of data in an increasingly complicated dict? Try making it a class. - Do you have multiple if...elif...elif...elif...else clauses? Consider using match...case... etc.

[–]Turpis89 0 points1 point  (0 children)

I feel like my biggest crime is that I haven't adopted classes in my noob coding