flashcards
dz / python / flashcardsNode 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() |
| location | knowledge/python.dz:41 |
| 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() |
| location | knowledge/python.dz:55 |
| 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() |
| location | knowledge/python.dz:67 |
| lowercase | |
| parents | python/docs/stdtypes/str/lower |
| flashcard (front) | How does one convert a string to lowercase in python? |
| flashcard (back) | str.lower() |
| location | knowledge/python.dz:78 |
| uppercase | |
| parents | python/docs/stdtypes/str/upper |
| flashcard (front) | How does one convert a string to uppercase in python? |
| flashcard (back) | str.upper() |
| location | knowledge/python.dz:90 |