Skip to content

Python Journey

My Coding Blog

Menu
  • Links
Menu

Tag: find

Python>>String Methods

Posted on August 29, 2022August 29, 2022 by coden00b

Here are some common String Methods or Attributes that you can use in modifying strings. Assuming x is the string: a. x.upper()  – converts to upper case > x = ‘Free Linux Tutorials’ >>> x.upper() ‘FREE LINUX TUTORIALS’ >>> print(x) Free Linux Tutorials >>> y = x.upper() >>> print (y) FREE LINUX TUTORIALS   b….

Read more

Recent Posts

  • The Zen of Python
  • Python>>String Interpolation and Formatting
  • Python>>String Methods
  • Python>>String Concatenation
  • Python>>Strings: Indexing and Slicing

Recent Comments

No comments to show.

Archives

  • January 2023
  • August 2022

Categories

  • Blog
  • Data Types