Quick actions

cmd+k|ctrl+k

Navigation

Languages

Built-In Functions + Methods

Snippet info

Language

Python

Visibility

public

Author

harshdeepsaini2757

Created

2025-11-03T21:57:30.289882Z

Updated

2025-11-03T21:57:30.289882Z

# Built-In Functions + Methods

greet = 'helllo'
print(greet[0:len(greet)])

# String Methods
quote = 'to be or not to be'

print(quote.upper())
print(quote.capitalize())
print(quote.find('be'))
print(quote.replace('be', 'me'))

print(quote)







INFO