Selecting string values from a column and returning values in lower case in SQL, translated to pandas.
Selecting string values in lower case
In SQL:
SELECT
LOWER(column_1)
FROM
table;
In pandas:
table
.assign(column_1 = table['column_1']
.apply(lambda column_1: column_1.lower()))
['column_1']