It returns a copy of the string with only its first character capitalized.
NA
str.capitalize()
#!/usr/bin/python str = "this is string example....wow!!!"; print "str.capitalize() : ", str.capitalize()
string
str.capitalize() : This is string example....wow!!!