Every line of 'int input python' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your Python code is secure.
5 def int_input(input_str=""): 6 while True: 7 try: 8 int(input(input_str)) 9 break 10 except ValueError: 11 print("类型出错,请重新输入!")