+ 3
Want to learn python any suggestions ?
having no programming background
4 Réponses
+ 1
one lesson at a time, and everytime you learn a new feature, apply it to what you already have learned.
lesson 1.. print
print("Hello world")
lesson 2.. variables
name="Rahul"
print(name)
lesson 3.. operators
number1=5
number 2=4
print(number1+number2)
lesson 4.. functions
def add(x,y):
answer=x+y
return answer
print(add(5,9))
These were just examples, but notice that each lesson I used everything I already learned.. it reinforces things. take your time and don't get dicouraged. it gets much easier with practice. Redoing things you have already learned seems redundant, but the only way to learn is practice
+ 3
try finishing the course, make code, and build up from small projects to larger.
some resources
https://www.sololearn.com/discuss/821134/?ref=app
+ 2
Try writing small bits of codes first.Participate in as many challenges as you can.Try creating your own logic no matter how much time it takes.And practice...practice..practice.
Here are few tips and tricks that might help you:
https://www.sololearn.com/discuss/1187881/?ref=app
+ 1
after finishing the course "solo learn python course"try to make small code then solve tasks and take a python course for expert