0
I'm new in learning programming
I started learning python? Any tips?
5 Answers
+ 8
Wilbur Jaywright ,
sorry to say, but none of them what you mentioned as answer for a beginners question does realy help yet. it just confuses beginners.
what helps is just starting and focusing with `introduction to python`, practicing, reading, learning frequently.
+ 2
Tip- never loss hope, keep coding until you master it.
0
Sololearnâs sandbox is nothing like the real world. Use a standard Python installation on desktop whenever you can.
input() can take strings.
There is a GUI toolkit called Tkinter included with standard Python. You can start using that eventually.
Put a space before and after every operator. For example âx = y + zâ instead of âx=y+zâ.
Add comments anywhere you think you might forget what exactly code was supposed to do, or where it might not be clear.
PyPi has a lot of good and even commonly used libraries not included with Python by default. If you find one there that does what you need, go ahead and install it (this will not work as easily inside the Sololearn sandbox).
There is no current standard framework for making mobile apps in Python. You can find better IDEs than Sololearnâs, but their systems for interacting with the device and building GUIs are usually pretty unique to them.
Do not make malware to see if you can. You can, and it can be very difficult for you to stop or clean up.
0
Lothar I donât believe you. Everything I mentioned is something I wish Iâd known sooner.