我使用IDLE和劇本我寫我需要能夠輸入#。使用IDLE執行代碼時,#即使是輸入時也會顯示爲紅色,就像它用於寫評論時一樣。這怎麼解決?我不太熟悉各種編碼等,希望找到一種方法使其與IDLE協同工作。想要輸入「#」使用IDLE
您正在使用什麼版本的Python IDLE的
0
A
回答
1
只需輸入你想輸入的字符串。沒有「解決方法」是必要的。它是一個小的bug,IDLE應用語法着色來輸入響應,但除了分心之外它是無害的。
>>> s = input(': ')
: #@%!#
>>> s
'#@%!#'
+0
非常感謝,顏色讓我分心,認爲它不會被接受爲一個字符串。正如你所說,它工作得很好。非常感謝。 – user1036197
1
?下面的代碼是用Python 3.5.2 IDLE
>>> # declare the user input and assign a placeholder variable
>>> user_input = ' '
>>> while user_input != 'end':
# get user input until the user input the word end
user_input = input('>> ')
# as long as the word end is not entered print the input results
if user_input != 'end':
print(user_input)
產生以下輸出:
>> #
#
>> ##
##
>> What is the #
What is the #
>> What format would you like the time in ##:##:##
What format would you like the time in ##:##:##
>> Print some ######
Print some ######
>> end
>>>
希望有所幫助。
相關問題
- 1. 想要獲得輸入密鑰,以觸發使用jqgrid搜索
- 2. 想要在Java中使用Setter Getter獲取多個輸入
- 3. IDLE調試器無法處理輸入()
- 4. IDLE中輸入重定向的語法
- 5. 無法獲得我想要的輸入
- 6. CSS margin-transference bug(ie6 + ie7),想要輸入
- 7. 沒有得到我想要的輸入
- 8. 需要使用輸入
- 9. 想要使用jquery
- 10. 想要使用css
- 11. 想要使用HTML +
- 12. 想要停止用戶輸入的消息框,但繞過輸入keydown
- 13. C#我想要在輸出中更改輸入到新語言
- 14. 多個輸入產生想要的輸出
- 15. 用戶輸入他們想要讀取的文件名稱?
- 16. 需要一個想法獲取用戶輸入(UI設計)
- 17. 我想要的fscanf保持掃描甚至用空格輸入
- 18. 想要創建一個縮寫了用戶輸入的
- 19. 我需要用戶輸入使用VBA
- 20. 使用jquery我想要一個div來隱藏輸入爲空時?
- 21. 想要在輸入字段中使用特殊的私人字符
- 22. 想要在關閉使用freopen打開的文件後寫入標準輸出
- 23. 想要在輸入標記中使用javascript/jquery顯示文件上傳大小
- 24. 想要使用jQuery-ui更新(「sortChange」,..)事件上的隱藏輸入字段
- 25. 我想用paypal輸入用戶輸入的動態價格
- 26. 使用Angular JS NG-Idle
- 27. 如何使用需要輸入
- 28. 拆分輸入到我想要得到的點擊輸入的值字符
- 29. 想要在使用過程
- 30. 想要使用的htaccess
你試過把它放在字符串文字中嗎? –
正如書面'#'一樣?或者你的意思是str(#)? – user1036197