clear shell และ output หน้าจอ Python ด้วย cls บทความนี้สอนใช้คำสั่ง cls จาก module os ของภาษา Python โดยคำสั่ง cls หรือ os.system('cls') ทำหน้าที่เคลียร์ หรือล้างข้อมูลหน้าจอให้ สามารถเขียนโปรแกรมได้ดังนี้
ตัวอย่าง clear shell และ output หน้าจอ Python ด้วย cls
import os
for i in range( 1, 12 ):
print( i )
c = int(input('กด 0 เพื่อ clear shell และ output หน้าจอ : '))
if c == 0 :
os.system('cls')
clear shell และ output หน้าจอ Python จากตัวอย่างโค้ดเริ่มต้นด้วยการ import os เพื่อใช้งานคำสั่ง cls จากนั้นวนลูป for แสดงตัวเลข 1 ถึง 12 และข้อความให้กด 0 เพื่อ clear shell และ output หน้าจอ กรณีผู้ใช้งานกด 0 โปรแกรมจะทำการ clear shell และ output หน้าจอด้วยคำสั่ง os.system('cls') จาก module os ของภาษา Python