Python 中的键盘输入
您在使用以下代码读取 Python 中的键盘输入时遇到问题:
<code class="python">nb = input('Choose a number') print('Number%s \n' % (nb))</code>
此代码不起作用,因为:
<code class="python">try: mode = int(input('Input:')) except ValueError: print("Not a number")</code>
以上是如何解决Python中的键盘输入问题?的详细内容。更多信息请关注PHP中文网其他相关文章!