Tools, FAQ, Tutorials:
'str' Literals and Conversions
How to specify "str" values in Python code?
✍: FYIcenter.com
"str" values can be specified using "str" literals or
the str() conversion function as shown in this tutorial:
1. "str" literals in double quotes as shown below:
>>> "FYIcenter.com" 'FYIcenter.com' >>> "He says: \"No\"" 'He says: "No"' >>> "He says:\n\"No\"" 'He says:\n"No"'
2. "str" literals in single quotes as shown below:
>>> 'FYIcenter.com' 'FYIcenter.com' >>> 'He says: "No"' 'He says: "No"' >>> 'He says:\n"No"' 'He says:\n"No"'
3. "str" literals in triple quotes that allows you to express strings in multiple lines as shown below:
>>> """Spanning ... multiple ... lines""" 'Spanning\nmultiple\nlines' >>> '''Spanning ... multiple ... lines''' 'Spanning\nmultiple\nlines'
4. "str" literals with "\" escape sequences as shown below:
>>> "Name\t\x41ge\n" 'Name\tAge\n' >>> "Name\t\u0041ge\n" 'Name\tAge\n'
5. str() function converting other data types to "str":
>>> str(1234) '1234' >>> str(3.14159) '3.14159' >>> str(True) 'True'
⇒ 'bytes' Literals and Conversions
⇐ Python Built-in Structured Data Types
2018-04-07, ∼1812🔥, 0💬
Popular Posts:
How To Pad an Array with the Same Value Multiple Times in PHP? If you want to add the same value mul...
How to access URL template parameters from "context.Request.Matched Parameters"object in Azure API P...
How to use "{{...}}" Liquid Codes in "set-body" Policy Statement? The "{{...}}" Liquid Codes in "set...
Where to see some Examples of Invalid JSON Values? Here are some Examples of Invalid JSON Values: 1....
How to use 'choose ... when ..." policy statements to control execution flows? If you want to contro...