Basique caisse de chaîne

str_lower = "A LAZY FOX";
 
 
 
print ("String with lower()", str_lower.lower())
 
 
 
print ("The orgginal string:" ,str_lower)
Frantic Flamingo