Chapters
Python114 chapters

Exercises

Introduction

3 tasks. Write the code, press Check, and the page runs it against a real Python interpreter.

Exercise 1

Print the message Hello, world! exactly.

Python
# print the message
Exercise 2

Print three lines: your name, your favourite number, and whether Python is interpreted (True).

Python
# three prints, three lines
Exercise 3

Use type() to print the type of the value 42.

Python
value = 42
# print its type