บทความนี้สอนเขียนโปรแกรมแสดงข้อความ Hello, World ด้วยภาษา Python ผ่าน Interactive Mode โดยมีขั้นตอนดังนี้
1. ติดตั้งโปรแกรมภาษา Python
2. เปิดโปรแกรม Run โดยการกดปุ่ม Windows + R จากนั้นพิมพ์ cmd และกด Enter จากนั้นพิมพ์ python เพื่อเข้าสู่ Interactive Mode ของ Python
C:\Users\admin>python
Python 3.9.7 (tags/v3.9.7:1016ef3, Aug 30 2021, 20:19:38) [MSC v.1929 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>>
3. เขียนโปรแกรมพิมพ์ Hello, Word ด้วยคำสั่ง print
>>> print("Hello, World")
Hello, World
4. เพิ่มเติมสร้างตัวแปร และพิมพ์ด้วยคำสั่ง print
>>> hello = "Hello, Python"
>>> print(hello)
Hello, Python