C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
Python String istitle() MethodPython istitle() method returns True if the string is a titlecased string. Otherwise returns False. Signatureistitle() ParametersNo parameter is required. ReturnIt returns either True or False. Let's see some examples of istitle() method to understand it's functionalities. Python String istitle() Method Example 1It is a simple example to understand # Python istitle() method example # Variable declaration str = "Welcome To TheDeveloperBlog" # Calling function str2 = str.istitle() # Displaying result print(str2) Python String istitle() Method Example 2# Python istitle() method example # Variable declaration str = "Welcome To TheDeveloperBlog" # True # Calling function str2 = str.istitle() # Displaying result print(str2) str = "hello TheDeveloperBlog" # False str2 = str.istitle() print(str2) Output: True False Python String istitle() Method Example 3# Python istitle() method example # Variable declaration str = "ab cd ef" if str.istitle() == True: print("In title case") else: print("Not in tit0le case") str = "Ab Cd Ef" if str.istitle() == True: print("In title case") else: print("Not in title case") str = "1b 2d 3f" if str.istitle() == True: print("In title case") else: print("Not in title case") Output: Not in title case In title case Not in title case
Next TopicPython Strings
|