Today I Learned

hashrocket A Hashrocket project

Lowercase a string in Python 🐍

str has a lower() method

"C".lower()
=> "c"
See More #python TILs