update vlaue in object as lowercase in python code example
Example: update string in python
var1 = 'Hello World!'
print ("Updated String :- ", var1[:6] + 'Python')
var1 = 'Hello World!'
print ("Updated String :- ", var1[:6] + 'Python')