Easy Tutorial
❮ Ref Math Exp Python Func Number Modf ❯

Python Hello World Example

Python3 Examples

The following example is the first one for learning Python, demonstrating how to output "Hello World!":

Example

# -*- coding: UTF-8 -*-

# Filename : helloworld.py
# author by : www.tutorialpro.org

# This example outputs Hello World!
print('Hello World!')

Executing the above code yields the result:

Hello World!

Python3 Examples

❮ Ref Math Exp Python Func Number Modf ❯