Jump to content

Strings and Numbers: Revision history

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

16 February 2025

3 April 2024

  • curprev 15:0915:09, 3 April 2024 Rob talk contribs 1,874 bytes +247 No edit summary
  • curprev 15:0015:00, 3 April 2024 Rob talk contribs 1,627 bytes +1,627 Created page with "== Strings == <syntaxhighlight lang="python" line> my_empty_string = "" my_string = "Hello" print(my_string) </syntaxhighlight> Set string to title, lower, or uppercase <syntaxhighlight lang="python" line> full_name = "bob smith" print(full_name.title()) # also .lower(), .upper() </syntaxhighlight> Remove whitespace or text from beginning or end <syntaxhighlight lang="python" line> my_spacey_string = " Hello " print(my_spacey_string.strip()) # also .lstrip() and .str..."