course content

Course Content

Introduction to Python | Mobile-Friendly

ChallengeChallenge
Task

Suppose you are given the variables name (as a string) and age (as an integer). You need to output the message in the following format "name is age y.o." using concatenation.

question-icon

Fill in the blanks to complete the task.

# Variables
name = "Jim"
age = 34

# Output the message
print(
_ _ _
_ _ _
_ _ _
_ _ _
_ _ _
_ _ _
_ _ _
_ _ _
_ _ _
_ _ _
)
Jim is 34 y.o.

Click or drag`n`drop items and fill in the blanks

dots
+
dots
str
dots
" y.o."
dots
(
dots
int
dots
)
dots
name
dots
+
dots
+
dots
" is "
dots
age
down-icon

Section 3.

Chapter 5