Home 01. Print "Hello World!"
Post
Cancel

01. Print "Hello World!"

1. Hello World Program

1
2
# This program prints Hello World! on the screen
print("Hello World!")

In this program, we have used the built-in print() function to print the string Hello, world! on our screen.

By the way, a string is a sequence of characters. In Python, strings are enclosed inside single quotes, double quotes, or triple quotes.

This post is licensed under CC BY 4.0 by the author.

02. Dynamic Arrays

02. Add Two Numbers