* Stage 1 * Finish restructuring, add checkboxes. * Minor format fixes * fixing broken link * fixing broken link * fixing README link * Fix multiples bad links * Fix links in reference/concepts/keywords/README.md * Correcting list description
674 B
674 B
String methods
TODO: ADD MORE
- strings (and other types) have built in instance methods - in this case,
"string".startswith("s")which are called from the instance of the string itself phone-number - this exercise uses
str.maketrans()(a static method ofstrthat returns a dictionary to create a translation table as required by thestr.translate()instance method. This method is unusual in that it takes either a single dictionary or two strings of equal length. The example solution for this exercise usesstr.maketrans()with a two-string argument. rna-transcription