I couldn't lowercase this desired line.I don't know what's the problem with this line?
"name1".lower()
print(name1)
I couldn't lowercase this desired line.I don't know what's the problem with this line?
"name1".lower()
print(name1)
You are not saving the lowercased string to a new variable. Try:
name1 = "name1".lower()
print(name1)