comment changer une chaîne en petite lettre en python

my_str = "Hello World"
my_str.lower()
print(my_str) # outputs "hello world" on the terminal
ProCoderMove