6 Réponses
+ 3
1) Initially to can learn its basic syntax.
2) You can using that basic syntax to code simple programs (odd or even , calculator , .....)
3) Work out more and then deeply learn the python and view tutorials and need to develop your learn the logics
4) Then try the conplicated programs using (pygame, beautifulsoap..........)
5) Then also still learn and workout make you as a well developer
+ 2
Desktop and web applications
+ 2
I had this question 2 days ago. I had gone through multiple tutorials and exercises on YouTube and on apps like Sololearn and DataCamp. But I felt like I was struggling to move from beginner to intermediate python mentally and it seemed like I was busy with beginner exercises.
Pechka Power I decided I'd go online and find coding tasks in python that start at beginner level and go all the way to complex material. The beginner and intermediate tasks/exercises are helpful because u learn as u go. I'm currently busy with only these type of exercises for the next 2 days or so then I'll go back to "studying" Python. By the way, focus on Sololearn's community and ask them here when u get stuck, this place is amazing ♥ 🙏
+ 1
It would be easy to create a simple calculater,
anything really!
+ 1
you can make shapes!
from turtle import *
def square(m):
for i in range(4):
fd(m)
right(90)
for i in range(10):
square(50)
fd(50)
The possibilities are endless...
0
Search for similar questions :-), also Google is your friend