0
What next with Python?
Iâve gone through the SoloLearn Python course, as well as some other free online python courses (like âIntroduction to Python: Creating Scalable, Robust, Interactive Codeâ on Edx.org). What should I learn next? I donât even know what my options are. Iâd say I feel confident coding, but donât really know how to creat programs. How do I move in that direction?
1 Answer
0
First, I would install Python directly onto whatever device you have to work with. On iOS, Pythonista and PyTo have good reps. On Android, I might try QPython. On non-handheld PCs, Python.org has official installers thatâll include the interpreter, a simple package manager, and a lightweight IDE known as IDLE (programmers should be forbidden from all naming things imo).
Then, decide what you want to do. Pick something feasible, donât try to start running before you can walk, but you can start and thatâs important.
Write out a basic plan for how the code is going to work. If you realize you donât know how to do something, research it. Chances are, someone has dealt with something similar. If you need to access something or do something outside the builtin modules, look for python libraries that can do it on PyPi or even GitHub.
Do you have any ideas?