Back to Freecodecamp

Drawing a Shape

curriculum/challenges/english/blocks/core-primitives-in-python/drawing-a-shape-video.md

latest543 B
Original Source

--description--

In this video, you will learn how to print a basic shape to the console using print statements.

--questions--

--text--

Which of the following is the correct way to print a triangle to the console?

--answers--

python
print("   /|  / |  /  | /___|")

python
print(   /|)
print(  / |)
print( /  |)
print(/___|)

python
print(" /|")
print(" / |")
print(" /  |")
print("/___|")

python
print("   /|")
print("  / |")
print(" /  |")
print("/___|")

--video-solution--

4