Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

title() function 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
'''
Comment

title() in python

>>> import re
>>> def titlecase(s):
...     return re.sub(rb"[A-Za-z]+('[A-Za-z]+)?",
...                   lambda mo: mo.group(0)[0:1].upper() +
...                              mo.group(0)[1:].lower(),
...                   s)
...
>>> titlecase(b"they're bill's friends.")
b"They're Bill's Friends."
Comment

python string: .title()

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

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

PREVIOUS NEXT
Code Example
Python :: creating a virtual environment with django on windows 
Python :: dense rank in pandas 
Python :: pyspark split dataframe by rows 
Python :: python chrome 
Python :: how to get a hyperlink in django 
Python :: format list into string python 
Python :: csv library python convert dict to csv 
Python :: python log10 
Python :: python set grid thickness 
Python :: pandas read_csv column names 
Python :: python check if number is in range 
Python :: for loop with index python3 
Python :: how to check if text is in upper case in python 
Python :: python set cwd to script directory 
Python :: how to delete file in python 
Python :: how to iterate over object in python 
Python :: numpy round to int 
Python :: convert array to set python 
Python :: delete certain characters from a string python 
Python :: python sleep 1 second 
Python :: python file.write is not writing whole line 
Python :: isdigit in python 
Python :: python repeting timer 
Python :: convert python datetime to string 
Python :: python read in integers separated by spaces 
Python :: py env 
Python :: add system path python jupytre 
Python :: python list only files not directories 
Python :: last executed query in flask api 
Python :: python data structures 9.4 
ADD CONTENT
Topic
Content
Source link
Name
9+3 =