Just don’t make it angry
07 November 2022
I made a robot that can see using sound. #shorts
03 November 2022
Best night of his life
12 October 2022
What happens when robots die?
11 October 2022
Pomodoro robot! This is a work in progress but too cute not to share
30 September 2022
Build your own web server using a Raspberry Pi Pico W using Phew.
28 August 2022
Yukon & Omnibot 3000
Omnibot 3000
Pico W Toothbrush
Whats new in Python 3.13a
Maker Faire Rome 2023
WeatherBot
Data Manipulation with Pandas and Numpy
Computer Vision on Raspberry Pi with CVZone
Learn how to program SMARS with Arduino
Build a SMARS Robot in Fusion 360
Python for beginners
Create Databases with Python and SQLite3
KevsRobots Learning Platform
5% Percent Complete
By Kevin McAleer, 3 Minutes
Python is a powerful and versatile programming language, suitable for various applications ranging from simple scripts to large-scale software. This lesson introduces Python programming and guides you on installing Python and writing your first program.
Python
Python is one of the most popular programming languages in the world due to its simplicity and readability. It’s used in various fields such as web development, data analysis, AI, and machine learning. Here are some reasons to learn Python:
Before you can start coding in Python, you need to install the Python interpreter on your computer. Follow these steps to install Python:
The next step is to set up your Python development environment. You’ll need a text editor or an Integrated Development Environment (IDE) to write your code. VS Code, PyCharm and Thonny are great options.
Let’s write your first Python program, a classic ‘Hello, World!’ example:
print("Hello, World!")
To run this program:
.py
hello_world.py
python hello_world.py
You should see Hello, World! printed in the terminal.
Hello, World!
In this lesson, you learned why Python is an essential language to learn, how to install Python, and how to write your first Python program. Great job getting started!
Next >