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….