0% completed
print("Python"[1])
text = "hello world" print(text.title())
text = "Python3" is_alnum = text.isalnum() print(is_alnum)
text = "Python is great" words = text.split() print(words)
print("Hello, World!"[7:12])
.....