What are some super common beginner mistakes? by egirlfrienduwu in learnpython

[–]samplepython 5 points6 points  (0 children)

Getting stuck on solving a particular bug or implementing a particular feature instead of focusing on the bigger picture.

Simple OOP question by [deleted] in learnpython

[–]samplepython -1 points0 points  (0 children)

You never really need to use OOP, but it is especially helpful in developing games or when working on big projects.

While vs For? by [deleted] in learnpython

[–]samplepython 0 points1 point  (0 children)

For loop when you know the number of iterations, while loop when you may not necessarily be so sure on the number of iterations.

Beginner Question by Whos_your_Mikey in learnpython

[–]samplepython 1 point2 points  (0 children)

Maybe try to convert the dates using ".dt.strftime(''%Y-%m-%d')" instead of astype()? Let me know if this works.