Are you a developer & aspire to transition into an AI Engineer or Specialist?
Start with learning Python!
If you have just 1 hour, you can learn everything you need to know to get started with Python programming. Let’s get started!
Here’s are the topics we’ll go through in the next one hour. Stay focused and try the exercises on your end for best learning experience.
- Introduction (1 min)
- Environment Setup (10 mins)
- Hello World! (2 mins)
- Input & Output (2 mins)
- Functions
- Control Flows (5 mins)
- Data Structures (5 mins)
- Modules (10 mins)
- Errors & Exceptions (5 mins)
- Classes (5 mins)
- Standard Libraries (5 mins)
- Project (10 mins)
1. Introduction
Python is an easy to learn, yet powerful object-oriented programming language. It has efficient high-level data structures & is an ideal language for scripting and rapid application development.
2. Environment Setup
Download Python Interpreter from https://www.python.org/downloads/
Set-up PATH Environment variable for Python Executable
Use an IDE like VS Code https://code.visualstudio.com/download
3. Hello World!
Most exciting moment for a programmer in the journey of learning a new programming language is when they write the “Hello World” program! For some reason, that gives immense satisfaction & confidence that we can conquer this language!
- Create a folder & open it with VS Code
- Create hello.py inside the folder
- Type print(“hello world!”) & save the file
- Open a new Terminal in VS Code & run the command:
>python hello.py
This will print “hello world!” on your Terminal.
