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中文網其他相關文章!