You are on page 1of 1

subject = "python course for beginners"

print(subject[0:4])
pyth
print(len(subject))
27
subject.upper()
'PYTHON COURSE FOR BEGINNERS'
print(subject.find('course'))
7

You might also like