str = “c.biancheng.net”
str.title()
‘C.Biancheng.Net’str = “I LIKE C”
str.title()
‘I Like C’str = “I LIKE C”
str.lower()
‘i like c’str = “i like C”
str.upper()
‘I LIKE C’
str = “c.biancheng.net”
str.title()
‘C.Biancheng.Net’str = “I LIKE C”
str.title()
‘I Like C’str = “I LIKE C”
str.lower()
‘i like c’str = “i like C”
str.upper()
‘I LIKE C’