Python เบื้องต้นสำหรับนักพัฒนา
Jasmin Ludolf
Senior Data Science Content Developer
$$
$$
$$
$$

print("Hello!")

Python script: ไฟล์ที่มีโค้ด Python สำหรับรัน
แนวทางการพัฒนา:

เรียนรู้เกี่ยวกับ:

$$
print()
$$
print("Hello, world!")
Hello, world!
print('Hello, world!')
Hello, world!
คอมเมนต์ช่วยอธิบายโค้ด
ขึ้นต้นด้วยสัญลักษณ์ #
แสดงด้วยสีที่แตกต่าง
ไม่มีผลต่อการทำงานของโค้ด
# This is a code comment
# The below is a print function
print("Hello, world!")
Python เบื้องต้นสำหรับนักพัฒนา