Your First Program In Python - Python Notes By Mr. BILRED - TechAmbitionX
Okay, so you’ve decided to learn Python... Good, but wait, Why? (Go ask yourself)
Now listen, I don't know for whatever reason you're learning Python Proglang, but this is what CAN be believed about it:
Python is not just a language, it’s your gateway to automation, data science, web development, AI, and beyond. Today, start your Python journey with the absolute basics
Python is a high-level, beginner-friendly programming language known for its clean syntax and readability. It’s used by tech giants like Google, Netflix, and NASA.
Why Python?
- Easy to read, easy to write.
- Big companies use it (Google, Netflix, even NASA).
- Used in AI, Data Science, Machine Learning, Automation, you know!
- You can build websites, automate boring stuff, work on AI, or just mess around and learn.
How to install Python
Go to python.org and install the latest version of Python.
Download any Code Editor aka IDE (Integrated Development Environment)
Idk why but I recommend PyCharm Community Edition, you can use any code editor you want. Go Install it
Open The Code Editor And Type
print("Peace Be Upon You, World")
What it does:
print() is a command that shows stuff on screen.
Whatever you put inside the quotes will get printed.
Try changing the message and see what happens.
Read The Topics:
Comments
Post a Comment