Deals Of The Week - hours only!Up to 80% off on all courses and bundles.-Close
Introduction
Displaying values
3. Displaying text
Variables
The print function
List basics
Summary

Instruction

Great! Now, let's get more creative and print a proper English sentence. Take a look:

'Hello, World!'

Unlike numbers, text values must by surrounded by quotes, double " " or single ' '. Those text values are called strings in the world of programming. This code will show the following text in the console:

Hello, World!

Exercise

Show the following sentence in the console:

I am studying Python!