Learning to Program in Python for Kids

of all ages  by Philip M Russell


Code Solution

Raspberry Pi Character


Here is the solution



And here is the code


print " My name is Pi"
print " I live in a computer in "
print " Hemel Hempstead, England"

or

print (" My name is Pi")
print (" I live in a computer in ")
print (" Hemel Hempstead, England")


Python Character

If you needed some help with this try this one on your own

Print the numbers like this below - each on a separate line.

one

two

three

Code Solution

Python Character

Here is the answer