I need to do a copy of a list in lower, but I don't want to do it with a loop. Something like this:
I try doing this: `
new_users = ["moresede", "renerico", "antoniogr01", "darknight", "admin"]
new_users_lower = new_user[:].lower()
`
I need to do a copy of a list in lower, but I don't want to do it with a loop. Something like this:
I try doing this: `
new_users = ["moresede", "renerico", "antoniogr01", "darknight", "admin"]
new_users_lower = new_user[:].lower()
`