
Patrick B. answered 03/28/21
Math and computer tutor/teacher
done_flag = False
while not done_flag:
InbuffNumStr = input("Please Input the column # 1-6 :>")
if InbuffNumStr.isnumeric():
if (int(InbuffNumStr)>0) and (int(InbuffNumStr)<7):
print(str(InbuffNumStr))
done_flag = True
else:
print(" I said between 1 and 6 !!!! ")
else:
print(" numbers please !")
ABC A.
You are very professional.03/28/21