course content

Course Content

Introduction to Python | Mobile-Friendly

ChallengeChallenge
Task

You are given three print() functions. You need to make Python ignore the second call of the print() function so that only 'A' and 'C' will be outputted.

question-icon
Fill in the blanks to complete the task.

print("A")
print("B")
print("C")
A
C
down-icon

Section 1.

Chapter 3