この小さなコードを使用したところ、構文エラーがあることが示されました。
私は python の初心者です。コードのこの部分を手伝ってくれる人はいますか。非常に単純な初心者向けプログラム:
#display
def display(val):
print("the number ",val)
#main program
while True:
val = input("Enter an integer between 0 and 9 or -1 to quit") ;
if val == '-1':
break
if val <= '0' & val >= '9':
display(val)
val =< '0' の部分でエラーを表示しています
申し訳ありませんが、それは私の部分からの非常に悪いタイプミスでした。トレースバックで質問を編集します。
Traceback (most recent call last):
File "C:\Users\****\Desktop\ra2\ra.2.py", line 16, in <module>
if val <= '0' & val >= '9':
TypeError: unsupported operand type(s) for &: 'str' and 'str'