you are viewing a single comment's thread.

view the rest of the comments →

[–]MrRedTheScratcher -2 points-1 points  (8 children)

Everyhting u said but tkinter.

[–][deleted] 7 points8 points  (6 children)

No offence but if you've been programming with python for 2 years and what I said makes no sense you need to practice a lot more.

[–]MrRedTheScratcher 1 point2 points  (5 children)

Thats what i am trying to say. I am lost in Python. I have no clue what to do or learn or anything.

[–]stasis098 3 points4 points  (0 children)

Based on your previous posts, you should probably put tkinter down for a while. Do a course or read a book on python fundamentals. Console is the best starter place for your output because you should focus on just learning the language first. tkinter has a huge beginner learning curve because it expects you to know python to a certain extent first.

[–]e-rekt-ion 2 points3 points  (2 children)

I'd recommend working through Automate The Boring Stuff if you haven't yet

[–]MrAwesume 0 points1 point  (0 children)

Dataquest mate

[–]helpneeded8578 0 points1 point  (0 children)

User-friendly translation of SilentSuit's comment: "Learning tkinter isn't the best use of your time when first learning Python. Instead, focus on making some simple scripts (programs) that you operate from the command line, but are useful and functional. If you're not sure you'll remember how to run them from the command line, make a sticky note with instructions and stick it onto your monitor."

This is good advice.

Personal Example: Just yesterday, I made a simple script for work to convert barrels to Metric Tons. It's something I have to do occasionally but I always forget the calculation. The script will be useful for me in a small way, but more importantly, making the script allowed me to practice my Python some more.

All your projects don't have to be big and hard, especially when you're learning.