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, 1128👍, 0💬
Popular Posts:
How to create a new API on the Publisher Portal 2017 version of an Azure API Management Service? If ...
Where to find tutorials on Python programming language? I want to learn Python. Here is a large coll...
Where to find tutorials on OpenID? Here is a large collection of tutorials to answer many frequently...
What Is Azure API Management Service? Azure API Management as a turnkey solution for publishing APIs...
What's Wrong with "while ($c=fgetc($f)) {}" in PHP? If you are using "while ($c=fgetc($f)) {}" to lo...