python/flashcards

flashcards

dz / python / flashcards

Node Tree

Nodes

alphanumeric
parents python/docs/stdtypes/str/isalnum
flashcard (front) What method is used to tell if a string is only alphanumeric?
flashcard (back) isalnum()

alphabetic
parents python/docs/stdtypes/str/isalpha
flashcard (front) What method is used to tell if a string contains only alphabetic characters?
flashcard (back) isalpha()

numeric
parents python/docs/stdtypes/str/isnumeric
flashcard (front) What method is used to tell if a string contains only numeric characters?
flashcard (back) isnumeric()

lowercase
parents python/docs/stdtypes/str/lower
flashcard (front) How does one convert a string to lowercase in python?
flashcard (back) str.lower()

uppercase
parents python/docs/stdtypes/str/upper
flashcard (front) How does one convert a string to uppercase in python?
flashcard (back) str.upper()