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, 1210👍, 0💬
Popular Posts:
What validation keywords I can use in JSON Schema to specifically validate JSON Array values? The cu...
What Is Azure API Management Service? Azure API Management as a turnkey solution for publishing APIs...
How to read Atom validation errors at w3.org? If your Atom feed has errors, the Atom validator at w3...
How To Get the Minimum or Maximum Value of an Array in PHP? If you want to get the minimum or maximu...
Where to find tutorials on PHP language? I want to know how to learn PHP. Here is a large collection...