Sintaksis
string.title()
Misollar
- Title() method'i har bir so'zdagi birinchi belgisini katta bo'lgan string sifatida qaytaradi.
txt = "Welcome to my world"
x = txt.title()
print(x)
natija:
# Welcome To My World
- Agar so'zda raqam yoki simbo'l bo'lsa, undan keyingi birinchi harf Uppercase(katta harf)ga aylantiriladi.
txt = "w1w2w3 Wel1come 1 to my 1world"
x = txt.title()
print(x)
natija:
# W1W2W3 Wel1Come 1 To My 1World
Top comments (0)