“Title () Função em Python” Respostas de código

Title () Função em Python

# title() title function capitalises the first letter of string and make other 
# letter lower case.
a=input('Enter a string :')
b=a.title()
print(b,': is the modified string')
# output:
'''
Enter a string :hII hOW aRE yOU
Hii How Are You : is the modified string
'''
Gr@Y_orphan_ViLL@in##

string python: .title ()

# .title() мөрийн арга нь гарчгийн том үсгийн мөрийг буцаана. 
# Гарчгийн том үсгээр үг бүрийн эхний тэмдэгтийг том үсгээр бичсэн бол бусад тэмдэгтүүдийг жижиг үсгээр бичнэ.

my_var = "dark knight"
print(my_var.title()) 
 
# Prints: Dark Knight
Puzzled Porcupine

Respostas semelhantes a “Title () Função em Python”

Perguntas semelhantes a “Title () Função em Python”

Mais respostas relacionadas para “Title () Função em Python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código