“Titel () Funktion in Python” Code-Antworten

Titel () Funktion in 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##

Python String: .title ()

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

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

Ähnliche Antworten wie “Titel () Funktion in Python”

Fragen ähnlich wie “Titel () Funktion in Python”

Weitere verwandte Antworten zu “Titel () Funktion in Python” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen