-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
  • 48,339
  • 8
  • 43
  • 63

1 Answers1

0

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

name1 = "name1".lower()
print(name1)