Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
x='\r\n\t\t\t\t' print(x)
上記のコードは、おそらく特殊文字を認識していないために機能していません。それで、助けていただけませんか?
生の文字列を使用します。
>>> x = r'\r\n\t\t\t\t' >>> print(x) \r\n\t\t\t\t
エスケープは面倒です:
>>> x = '\\r\\n\\t\\t\\t\\t' >>> print(x) \r\n\t\t\t\t