Comparation of simple tasks in php and python - a guide for php programmers wanting to create python applications
strtolower:
$x=strtolower('Some String');
echo $xIn Python you can do:
x = lower('Some String')
print xBut remember: everything is an object, including every string.
x = 'Some String'.lower() print x
