How to use 'int input python' in Python

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.

All examples are scanned by Snyk Code

By copying the Snyk Code Snippets you agree to
5def int_input(input_str=""):
6 while True:
7 try:
8 int(input(input_str))
9 break
10 except ValueError:
11 print("类型出错,请重新输入!")

Related snippets