Python Language String: Difference between revisions
Jump to navigation
Jump to search
Line 3: | Line 3: | ||
=Overview= | =Overview= | ||
String are a Python [[Python_Language#Sequence_Types|sequence]] of characters. Strings are immutable, a string cannot be changed in-place. Python 3 supports the Unicode standard, so Python 3 strings can contain characters from any written language in the world. | |||
=TO DEPLETE= | =TO DEPLETE= | ||
[[Python Language String TODELETE]] | [[Python Language String TODELETE]] |
Revision as of 19:00, 18 June 2022
Internal
Overview
String are a Python sequence of characters. Strings are immutable, a string cannot be changed in-place. Python 3 supports the Unicode standard, so Python 3 strings can contain characters from any written language in the world.