while True :
Vehicle_Number_PLate = ('Please enter the vehicles number plate: ')
If len(Vehicle_Number_Plate)>7:
print ('The number plate is invalid, please try again')
Vehicle_Number_plate = FALSE
If len(Vehicle_Number_Plate)<7:
print ('The number plate is invalid, please try again')
請你能幫助我,我真的卡住了,我需要幫助。非常感謝我不能得到len命令工作
'如果'是'if',''while'需要一個縮進。 –
使用輸入('請輸入車號牌') – tinySandy
另外,'print'是一個很好的調試工具。嘗試'print(Vehicle_Number_Plate)',你會看到問題。 – tdelaney