Latest web development tutorials

Python Hello World Examples

Document Object Reference Examples Python3

The following examples are learning Python first instance, namely, how to output "Hello World!":

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

# Filename : helloworld.py
# author by : www.w3big.com

# 该实例输出 Hello World!
print('Hello World!')

Execute the above code output results:

Hello World!

Document Object Reference Examples Python3