Header Ads Widget

Responsive Advertisement

write a lambda function to convert a string value to lowercase

 write a lambda function to convert a string value to lowercase

 


my_function = lambda my_string: my_string.lower()

print(my_function("Hey Guys Welcome to My BLOG"))

 

write a lambda function to convert a string value to lowercase



my_function = lambda my_string: my_string.lower()

print(my_function("ARE YOU READY FOR PROGRAMMING"))

Post a Comment

0 Comments