CSC 171 - Introduction to Computer Programming

Lab Assignment #12 - Still More Work with Strings

Due Monday, October 23, 2023

We have just some string methods, a special type of function that can "owned" by a string. The ones that we learned about are:

Given
s = "It is imperative that we do that which is right"
t = "THE YANKEES STINK!!!"
u = "The Taming of the Shrew"
v = "3.14159"

Evaluate

  1. s.isalpha()
  2. u = u.lower()
  3. s.isdigit()
  4. u = u.swapcase()
  5. s.istitle()
  6. t = t.lower()
  7. s.islower()
  8. u = u.capitalize()
  9. t.isupper()
  10. t = t.title()
  11. t.isalpha()
  12. u.istitle()
  13. [Back to the Lab Assignment List]