Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Python

จะรันไฟล์ Python ใน Python shell ได้อย่างไร?


ในการรันไฟล์ Python ใน python shell คุณสามารถใช้วิธี execfile หรือวิธี exec

ตัวอย่าง

ตัวอย่างเช่น คุณต้องการเรียกใช้สคริปต์ชื่อ my_script.py ที่มีเฉพาะบรรทัด:

print("Greetings from my_script")

จากเปลือก python คุณสามารถป้อน:

>>> execfile('my_script.py')
Greetings from my_script

หรือคุณอาจใช้วิธี exec ดังนี้:

>>> exec(open("my_script.py").read())
Greetings from my_script