str.title();
NA
#!/usr/bin/python3 str = "this is string example....wow!!!" print (str.title())
This Is String Example....Wow!!!