raw_input Python คือ คำสั่งรับค่าจากผู้ใช้งานผ่าน Command Prompt ของ Python v2.x ปัจจุบันหากผู้อ่านใช้ Python v3.x แนะนำให้ใช้คำสั่ง input แทน สามารถเขียนโปรแกรมได้ดังนี้
ตัวอย่าง raw_input Python สำหรับ version 2.x
name = raw_input('Please input name : ')
print( name )
ตัวอย่าง input Python สำหรับ version 3.x
name = input('Please input name : ')
print( name )