Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 1.05 KB

File metadata and controls

17 lines (12 loc) · 1.05 KB

str

Python's string type, which always holds encoded Unicode text.

A useful concept to know to solve the hamming exercise.

TODO: ADD MORE DETAIL

See the Python documentation entries for the [immutable][immutability] text sequence type. You'll also want to familiarize yourself with the use of str as a casting function, as well as the many string methods available to use on the type.