Table of Contents

Fundamentals of Computer Programming

หนังสือ และ ตำรา

พื้นฐาน

ดู การเขียนโปรแกรมคอมพิวเตอร์พื้นฐาน สำหรับหลักการและทฤษฎีโดยทั่วไป

ภาษาไพธอน

ภาษาไพธอน (Python programming language) …

ตัวอย่างปฏิบัติ

ตัวอย่างโปรแกรมไพธอน 1

The following example shows a simple Python program, which simply shows the message “Hello, World!” on the screen.

print("Hello, World")

ตัวอย่างโปรแกรมไพธอน 2

ตัวอย่างโปรแกรมไพธอน 3

ตัวอย่างโปรแกรมไพธอน 4

ตัวอย่างโปรแกรมไพธอน 5

ตัวอย่างโปรแกรมไพธอน 6

ตัวอย่างโปรแกรมไพธอน 7

ตัวอย่างโปรแกรมไพธอน 8

ตัวอย่างโปรแกรมไพธอน 9

ตัวอย่างโปรแกรมไพธอน 10

ตัวอย่างโปรแกรมไพธอน 11

ตัวอย่างโปรแกรมไพธอน 12

ตัวอย่างโปรแกรมไพธอน 13

ตัวอย่างโปรแกรมไพธอน 14

เทคนิคน่าใช้

import sys
print(sys.getsizeof(4))
print(sys.getsizeof(4.0))
dict1 = { 'a': 1, 'b': 2 }
dict2 = { 'b': 3, 'c': 4 }
merged = { **dict1, **dict2 }
print (merged)
# {'a': 1, 'b': 3, 'c': 4}

Worth your read

* Frequently Asked Questions