Latest web development tutorials

Contoh Python Hello World

Dokumen Referensi Object contoh Python3

Contoh-contoh berikut belajar Python contoh pertama, yaitu, bagaimana output "Hello World!":

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

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

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

Mengeksekusi hasil kode output di atas:

Hello World!

Dokumen Referensi Object contoh Python3