Ruby Downcase

s = "Put your UPPERCASE string Here"
s.downcase # it does what it says, equivalent to .lower() in Python
wolf-like_hunter