在python中相當於 string c# = @"\hello"
? python = '\hello'
換句話說,我將如何繞過Python中的'\''
斷點?python旁路''
0
A
回答
2
假設你的意思是你想\
不要像一個轉義字符,那麼你乾脆逃避\
另一個\
:
myString = "\\hello"
print myString
此打印:
\hello
您也可以使用「原始」字符串:
myString = r"\hello"
1
0
任何編程語言來打印轉義字符或使用它作爲字符串的一部分拇指的一般規則是逃避轉義字符。 所以
>>print "\\hello"
\hello
此外,通過@IanPudney如指出,Python提供了一個特殊的機制來打印原始字符串。只需使用打印R 「\你好」
我希望這有助於
相關問題
- 1. Python旁路提示腳本
- 2. 旁路softlockup_threshold
- 3. 旁路錯誤
- 4. PHP str_replace旁路
- 5. Applescript旁路提示
- 6. 旁路按鈕ISDEFAULT
- 7. 旁路強制JOptionPane
- 8. 旁路函數「out」參數
- 9. 旁路配置測試
- 10. http,https&ajax旁路,也許?
- 11. 不顯示旁路UIView
- 12. MvvmCross:常規插件旁路
- 13. 旁路的OutputCache的ASP.NET MVC
- 14. 重寫nginx的(旁路)IP
- 15. 旁路彈簧安全
- 16. 旁路PrintDialog類在IE9
- 17. 多時間執行旁路
- 18. 旁路值小部件
- 19. 旁路瀏覽器檢查
- 20. vdriveusa計時器旁路
- 21. jQuery的驗證旁路
- 22. 旁路SET NAMES UTF8的MySQL
- 23. 旁路春季安全@preauthorize
- 24. 旁路應用tTransport安全
- 25. 在ireport 5.6.0旁路參數
- 26. 旁路validate_product_categories()在類WC_Coupon
- 27. 旁路MVC驗證的GET請求
- 28. 規格中的旁路初始化器
- 29. 的和foreach旁路Array屬性
- 30. 旁路所需屬性的ASP.NET MVC
你所說的'bypass'意思?如果它意味着只是得到'hello'字符串,那麼你可以嘗試''\ hello'.split('\\')[1]' – python