02-Getting Start with Python Programming.pptx

ThilinaWanshathilaka1 0 views 16 slides Oct 11, 2025
Slide 1
Slide 1 of 16
Slide 1
1
Slide 2
2
Slide 3
3
Slide 4
4
Slide 5
5
Slide 6
6
Slide 7
7
Slide 8
8
Slide 9
9
Slide 10
10
Slide 11
11
Slide 12
12
Slide 13
13
Slide 14
14
Slide 15
15
Slide 16
16

About This Presentation

How to start python deveopment by installing IDE


Slide Content

02-Python Let’s Get Start By Thilina Wanshathilaka

Getting Python for Windows OS Go to https://www.python.org/downloads/ Select appropriate version based on your operating system Find the correct bit version if needed (Windows OS) Click on Download “ Windows installer” and wait until download complete. If you don’t have windows operating system please inform your instructor

Getting Python Windows OS

Installing Python for Windows OS Click on Newly downloaded installer Remember to check the check box “Add Python <version> to PATH” Click Install Now and wait until finish installation Run command prompt and type command ‘ py ’ If you get python interactive you all set for next session

Installing Python for Windows OS

Python Interactive

Python Interactive Python Interactive or Python Shell is a quick ways to run a code by developer. This is simple application that provides access to all built in functions, installed modules and libraries that provides novice and expert developers to explore and test before put in to program. Lets try python interactive

Python Scripts Run command prompt Enter command notepad hello.py and new N otepad will open Type statement in hello.py print (‘Hello Python’) Press Ctrl+S or save hello.py Go to command prompt and type py hello.py and press enter check the output and make necessary adjustment

Setting up IDE (Atom) Go to Atom.io and download Atom IDE Install Atom and wait until process is complete, restart computer and open Atom. Setup working folder Go to install option and search for platformio -ide-terminal Click install and wait until process is complete Restart the Atom and now you are ready to roll

Download Atom

Get Platformio IDE Terminal

You all set

Let’s Do something Challenging Start Atom and create file Challenge1.py Enter below statement Run your program by typing py Challenge1.py in platformio ide terminal Check everything is right Let’s correct the mistake we made in program