Built-in functions

Run Settings
LanguagePython
Language Version
Run Command
print(len("hellooooooooo")) #lenght of the string greet = "hellooooooooo" print(greet[:]) print(greet[0:len(greet)]) print(greet[0:13]) quote = "to be or not to be" print(quote.upper()) print(quote.capitalize()) print(quote.lower()) print(quote.find("be")) #it finds the occurrrence of the word print(quote.replace("be", "me")) print(quote) quote2 = quote.replace("be", "me") print(quote2)
Editor Settings
Theme
Key bindings
Full width
Lines