当我按F5键时,else函数旁边的打印功能会突出显示,并且我收到一条错误消息,提示“语法无效”。
尝试重新编写打印功能,但是什么也不做。更改了一些代码,但无济于事。
import system
print("ARE YOU STAFF, PARENT OR STUDENT?")
position = input()
if position.lower() == "parent":
print("Please input password.")
password1 = input()
if password1.lower() == "abc123":
print("Access Granted")
print("THIS IS A WORK IN PROGRESS, PLEASE COME BACK LATER.")
else print("Access Denied!")
sys.exit()
答案 0 :(得分:0)
您忘记在else
语句后加上':'。
示例:
if conditional_test:
do something
else: #to put test condition in else use 'elif conditon:'
do something_else