question.py

Created by cent20

Created on August 15, 2023

297 Bytes

📙 Découvrir la NumWorks p.42
Ce script fonctionne sur la calculatrice et sur le simulateur


# Découvrir la NumWorks p.42 
# https://amzn.to/3s7Q4uZ 

from math import *

answer = None
while answer != ord("*"):
  print("\nThe Answer ?")
  try : 
    answer = int(input())
  except:
    pass
  if answer != ord("*"):
    print("Try again...")

print("You find the Answer !")