Python Language String: Difference between revisions
Jump to navigation
Jump to search
Line 5: | Line 5: | ||
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. | 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. | ||
=The < | =The <tt>[]</tt> Operator and String Slices= | ||
=TO DEPLETE= | =TO DEPLETE= | ||
[[Python Language String TODELETE]] | [[Python Language String TODELETE]] |
Revision as of 19:01, 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.