Difference between revisions of "Python notes"
From Wiki at Neela Nurseries
m (add link to Python3 "re" library, and note about Python's notion of byte data type.) |
m (add note how to assign long lines of bytes to variables.) |
||
Line 22: | Line 22: | ||
<ul> | <ul> | ||
* https://docs.python.org/3/library/re.html | * https://docs.python.org/3/library/re.html | ||
+ | </ul> | ||
+ | <!-- odne komentar --> | ||
+ | |||
+ | == [[#top|^]] Strings and Long Lines == | ||
+ | |||
+ | To express long lines in Python there are a couple of methods. The `textwrap` library or module contains some utils to help with this. To use parentheses about a multi-line string also provides a way. | ||
+ | |||
+ | <ul> | ||
+ | * https://note.nkmk.me/en/python-long-string/ | ||
</ul> | </ul> | ||
<!-- odne komentar --> | <!-- odne komentar --> | ||
<!-- EOF --> | <!-- EOF --> |
Revision as of 20:08, 14 February 2024
2023-10-11 Wednesday
^ Overview
Python notes local page on Neela Nurseries wiki
^ Questions
Question: what is the syntax or python-ism in this construcxt?:
if __name__ == '__main__': main()
^ Python Data Types
The following Python3 online documentation page mentions early on how Python distinguishes Unicode strings and 8-bit strings which it also calls 'bytes'. This may be a starting point to understanding how and when Python3 treats data as bytes:
^ Strings and Long Lines
To express long lines in Python there are a couple of methods. The `textwrap` library or module contains some utils to help with this. To use parentheses about a multi-line string also provides a way.