Nuttige ingebouwde functies voor strings Flashcards
my_string.capitalize()
alleen eerste letter van de string in hoofdletter
my_string.count(“e”)
telt wat je in de haakjes doet
my_string.find(“h”)
geeft je een indexnummer van de eerste h
my_string.index(“e”)
gives the first index number where the letter is found
my_string.isalnum()
checks if sting is only letters and numbers
my_string.isalpha()
checks if string only letters
my_string.isdecimal()
all characters in a string a decimal, true or false
my_string.isdigit()
all characters in a string are numbers, true or false
my_string.isidentifier()
true als alle characters letters, nummers of _ zijn,
mag niet beginnen met nummer en mag geen spaties hebben
my_string.islower()
true als alle letters kleine letters zijn
my_string.isnumeric()
checks if all characters are numbers
my_string.isupper()
checks if all characters are hoofdletters
s.join(list)
joins alles aan elkaar met de letter s (die variabele moet
maken)
my_string.lower()
alles in kleine letters
my_string.upper()
alles in hoofdletters