WHAT IS PYTHON :
PYTHON is a library is a bundle of code designed for specific purpose such as data analysis web development or in machine learning. PYTHON is a high level programing language known for its simplicity and readability. it used in web development ,data analysis, machine learning, automation, and etc. its very clean and beginner friendly.
Basic python Roadmap :
![]() |
Roadmap for python python course free |
at the beginner level , you'll focus on the foundation concepts of python . this stage is crucial for buildings a strong base before moving on to more advance topics
key topics :
- basic syntax : learn about variables data types (integers, floats, strings, Booleans), operators and basic input and output operations
- loops functions built in functions
- data structures lists, tuples, sets, dictionaries
- OOP classes, inheritance, objects
- Advance topic 1 regEx, Decorators, Lambda
- Advance topic 2 modules, iterators
- learn python libraries ex : Numpy, OS, Datetime
- learn version control system ex: Git
FROM BEGINNING :
- USING PRINT FUNCTION
print function is used to display the text as it is.
- type print in lowercase
- followed by parentheses()
- inside the parentheses, write the text you want to display.
- enclosed with either single quotes or double quotes.
If you want to add comments in python you can use the # symbol. # add before or front of the line of code then the line will act as the comment . that cannot affect the program in output.
- You have to must try in your python compiler use idle avoid online compilers to Errors
0 Comments