-1

I couldn't lowercase this desired line.I don't know what's the problem with this line?

"name1".lower()

print(name1)
Patrick Artner
  • 50,409
  • 9
  • 43
  • 69

1 Answers1

0

You are not saving the lowercased string to a new variable. Try:

name1 = "name1".lower()
print(name1)
EpicEfeathers
  • 106
  • 2
  • 12