Python Shell เข้ายังไง บน Windows บทความนี้สอนวิธีเข้า Python Shell ซึ่งเป็น Interpreter สำหรับรันโปรแกรม ส่วยประกอบของโค้ด หรือชุดคำสั่งของภาษา Python จากตัวอย่างใช้งานบน Windows มีรายละเอียดดังนี้
ตัวอย่าง Python Shell เข้ายังไง บน Windows
1. เปิดโปรแกรม Run ด้วยการกดปุ่ม Windows + R พิมพ์ cmd และกด OK หรือปุ่ม Enter
2. พิมพ์คำว่า python และกด Enter หากสำเร็จจะเข้าหน้าต่าง Python Shell สังเกตตรงที่พิมพ์จะเปลี่ยนเป็น >>>
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. ทดลองคำสั่ง Python ใน Python Shell ด้วยคำสั่ง print ตามด้านล่างพิมพ์เสร็จแล้วกด Enter
print('Hello Devdit')
Hello Devdit
4. กรณีต้องการออกจาก Python Shell ให้กดปุ่ม Ctrl + Z และกด Enter
>>> ^Z
C:\Users\admin>