Questions
What is snake_case?
Words joined by underscores, all lowercase: user_name, api_key. It is the convention for Python variables and database columns.
Can it convert camelCase to snake_case?
Yes — case boundaries count as word breaks, so "userEmailAddress" becomes "user_email_address". Each line converts separately.