Strings
Mon 30 June 2025
s = 'hello world'
print(len(s))
11
print(s.upper())
HELLO WORLD
print(s.lower())
hello world
print(s.capitalize())
Hello world
print(s.title())
Hello World
print(s.swapcase())
HELLO WORLD
print(s.startswith('hello'))
True
print(s.endswith('world'))
True
print(s.find('o'))
4
print(s.rfind …Category: basics
Read More