python sort string code example
Example 1: python string sort characters
>>> a = 'ZENOVW'
>>> ''.join(sorted(a))
'ENOVWZ'
Example 2: python sort list string
# s = list with strings
s.sort(key=str.lower)
Example 3: python parse string
msg = "hi#my#name#is#alon"
msg = msg.split("#")
print(msg)
#output: ["hi", "my", "name", "is", "alon"]
Example 4: python how to sort a list alphabetically
print(sorted(("snow", "glacier", "iceberg")))
Example 5: sorted python
var = sorted(old_var)