Skip to content

Latest commit

 

History

History
15 lines (13 loc) · 261 Bytes

File metadata and controls

15 lines (13 loc) · 261 Bytes

Strings in Python

Slicing & Immutability

s = 'hello world'
print(s[0:5])      # 'hello'
print(s[::-1])     # 'dlrow olleh'
s[0] = 'H'         # Error! Strings are immutable.

Useful Methods

print(s.upper())
print(s.split())