Quick actions

cmd+k|ctrl+k

Navigation

Languages

Inbuilt function

Snippet info

Language

Python

Visibility

public

Author

dharmendrarah

Created

2023-01-06T18:12:10.331181Z

Updated

2023-01-06T18:12:10.331181Z



quote="to be or not to be"

print(quote.capitalize())

print(quote.upper())
print(quote.lower())
print(quote.find("be"))
print(quote.replace("be","me"))
INFO