Chapters
Python114 chapters

Exercises

Concatenation

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

Exercise 1

This raises TypeError. Fix it so it prints Age: 36.

Python
age = 36
print("Age: " + age)
Exercise 2

Print a line of exactly 20 dashes.

Python
# print 20 dashes
Exercise 3

A comma is missing, so the list has two items instead of three. Fix it.

Python
names = ["Ada", "Grace" "Katherine"]
print(len(names))