Skip to content

Latest commit

 

History

History
10 lines (6 loc) · 375 Bytes

00_hello_world.md

File metadata and controls

10 lines (6 loc) · 375 Bytes

Hello World

When learning a new programming language, it is customary to first learn how to print 'Hello World!'. While a bit quirky, it is a useful first step to know how to send input to the program and where to see the output. In Python, you can use the built-in print() function to print the greeting "Hello World!"

print('Hello World!')