114532 Views
101685 Views
86270 Views
54891 Views
51137 Views
49962 Views
Level Up your CAD Skills
Operation Pico
Raspberry Pi Home Hub
Hacky Temperature and Humidity Sensor
Robot Makers Almanac
High Five Bot
Using the Raspberry Pi Pico's Built-in Temperature Sensor
Getting Started with SQL
Introduction to the Linux Command Line on Raspberry Pi OS
How to install MicroPython
Wall Drawing Robot Tutorial
BrachioGraph Tutorial
KevsRobots Learning Platform
55% Percent Complete
By Kevin McAleer, 2 Minutes
Let’s do something more interesting.
We’ll make the Raspberry Pi Pico (or whichever board you are using) ask us a question, then reply back to us.
Type of the program below into your Python Editor
# Variables # name.py print("Please type your name:") name = input() print("Hello", name)
Save the file and then run it by pressing the green run button.
run
The name variable holds the value that it is assigned, and we assigned it by using the = equals sign.
name
=
The function input, is another built-in function that MicroPython provides to get user input from the keyboard and return it to our program.
input
The variable is like a box that we can put things in, in this case a persons name.
We can also store numbers in variables; let’s extend our example and add an extra question
numbers
type:
name = input('hello, please enter your name > ') age = input('please enter your age > ') print('hello', name, 'how does', age, 'feel?')
Note input() only returns text (str) types of data, this means if you try to do any math with the age it will not work in the way you expect. If you want age to be a number you will too to wrap it in the int() type to change it. E.g. age = int(input('please enter your age >')) print('next year you will be', age + 1, 'years old') This is called casting and we’ll look at this in more depth in later modules.
input() only returns text (str) types of data, this means if you try to do any math with the age it will not work in the way you expect.
input()
str
If you want age to be a number you will too to wrap it in the int() type to change it.
age
int()
E.g.
age = int(input('please enter your age >')) print('next year you will be', age + 1, 'years old')
This is called casting and we’ll look at this in more depth in later modules.
casting
We can use variables in maths, for example if we want to find the missing angle in a triangle, and we have the other two angles we can use a formula: 180 - a + b = c
180 - a + b = c
a = 65 b = 42 c = 180 - a + b print('the missing angle is: ', c)
< Previous Next >