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

จะตรวจจับข้อยกเว้นในขณะที่ใช้คำสั่ง 'กับ' ของ Python ได้อย่างไร


สามารถเขียนโค้ดใหม่เพื่อตรวจจับข้อยกเว้นได้ดังนี้:

try:
     with open("myFile.txt") as f:
          print(f.readlines())
except:
    print('No such file or directory')

เราได้ผลลัพธ์ดังต่อไปนี้

C:/Users/TutorialsPoint1/~.py
No such file or directory