python is the latest, highly trending , beginner friendly programming language that is widely used!
so how do u master this even when you have no knowledge on programming?
so this is how I mastered it. and I'm listing them below:
1.install IDE and get familiar with its interface:
this might sound silly, but trust me it works!. install the IDE( integrated development environment) of python and just look at the features it has. get used to of handling it. because I've seen a lot of people who knew the code but they don't know how to execute it! so get familiar with IDE.
2.better basics== better code:
taking time to understand the basics ,has a huge impact in your code! understand all the attributes, operations, basic commands before you proceed to learn the programming language. without knowing the basics you'll not understand the code.
3.logic :
each and every program ever written has a logic behind. all you need to do is take time to understand the logic first before you look at the coding part. only if you understand the logic behind, you'll be able to proceed with coding if you happen to encounter a similar one in the future!.
4. loops for looping:
once you are fine with basic print programs, start off with loops. there are two types of loop in general, for and while loop. they can be used when there is a condition that needs to be checked for a finite number of times . if else ,nested if statements are used when you have more than once case in a program , I .e, decision making programs come under these. for example, when you must decide whether a given number is even or odd, if else statements come into play. whereas, if you want to type the odd numbers in a list, then you can use the looping structures.
5.small projects:
once you are done with basics, try creating small projects with python such as, the basic snake game, alarm clock etc., to know where you stand.
while doing so, you'll be able to figure out where you need to develop and also whether you need more time on basics or not.
last but definitely not the least, improve debugging skills! it is very very important for a programmer to resolve the issues he/she has with the program and be able to produce the desired output.
that's how i improved myself in python, hope it would be of help to you too! lemme know if you need more blogs about coding and programming languages!
happy coding!