Pythonデビューしました!
checkflg = False
inputCount = 0
while(not(checkflg)):
try:
if inputCount == 0:
a = int(input("数字を入力してね : "))
else :
a = int(input("数字以外のものを入れたよね。もう一回入力してね : "))
checkflg = True
except ValueError:
checkflg = False
inputCount = inputCount + 1
while(True):
if a == "8":
print("ピンポン!")
break
else :
a = input("ブー、不正解だった。再度入力してみてね : ")