Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
title course
Q22
S2 - Intermediate Python Programming
x = [1, 2, 3]
print("x[4]=", x[4])
  • 已知程式碼有錯誤,執行時會出現下方的 exception:

    IndexError: list index out of range
    
  • 請嘗試進行例外處理。