Learning Python-Basic course: Day 22, String Methods part-1

Today we will learn about string functions

Till now, we were using strings for various programs. We used them both as input and output parameters. But now we will learn how to modify them.
This week, we will do operations like break a sen…



Today we will learn about string functions

Till now, we were using strings for various programs. We used them both as input and output parameters. But now we will learn how to modify them.
This week, we will do operations like break a sentence into words, break strings into letters, capitalize them without using the ord() hack or count number of vowels in a sentence.



String as a list

In Python, we can easily interpret a string as a list of characters. In the example below, we can apply the len() function to the string txt, or iterate the for loop.
But we cannot treat it as a list and do opertions like pop or append()

#Interpreting the string as an array of characters.
txt= "Python"
print(txt)
print("Length of the txt = ", len(txt))

#display string using in keyword
for ch in txt:
    print(ch)


#display the string in original form using range()
for ch in range(0, len(txt)):
    print(txt[ch], end=" ")

print()
#to display in reverse order
for ch in range(len(txt)-1, -1 , -1):
    print(txt[ch], end="")

#We cannot append a character or pop using the standered length functions.
txt.append("a")
print(txt)

OUTPUT-

Python
Length of the txt =  6
P
y
t
h
o
n
P y t h o n 
nohtyPTraceback (most recent call last):
  File "C:/Users/aatma/Downloads/Example 1 .py", line 21, in <module>
    txt.append("a")
AttributeError: 'str' object has no attribute 'append'



Case changing

We will now see how to handel upper and small cases in Python without any direct use of UNICODE characters.


#2. Upper case the first letter in this sentence:
txt = "hello, AND Welcome"
x = txt.capitalize()
print (x)
#output : Hello, and welcome

#3. Make the string lower case:
txt = "Hello, And Welcome!@#$"
x = txt.lower()
print (x)
#output : hello, and welcome

#4. Make the string upper case:
txt = "Hello, And Welcome"
x = txt.upper()
print (x)
#output : HELLO, AND WELCOME

OUTPUT-

Hello, and welcome
hello, and welcome!@#$
HELLO, AND WELCOME



Word specific methods

Now let’s have a look at more string functions via a program. Comments are there whever necessary.


#1.Print the word "computer", taking up the space of 25 characters,
#with "computer" in the middle:
txt = "computer"
x = txt.center(25)  

print ("hello",x,"world")
# 2 default spaces+25 total characters. so distance between hello and world must be 27 characters.

#2. Return the number of times the value "act" appears in the string:
txt = "I love programming, programming is my favorite activity"
print(txt)
x = txt.count('i') 

print ("Frequency of the value =" , x)
#case matters. Capital I and small i are treated differently.

#3. Check if the string ends with a punctuation sign .
txt = "Hello, welcome to my world."
x = txt.endswith("my world.")
print(x)


#4. Set the tab size to 5 whitespaces:
print("First\tsecond")
txt1 = "ACADEMY"              

txt = "A\tC\tA\tDE\tM Y" # backslah t (i.e. \t) represents tab space. 
x =  txt.expandtabs(6) #expands the tab spaces
print(x)


#5. Locates the word "welcome" in the string and returns the index:
txt = "Hello, welcome to my world."
print(txt)
x = txt.find("welcome")
print(x)
#output : 7
#if the result is -1, string does not exist in the sentence


OUTPUT-

hello          computer         world
I love programming, programming is my favorite activity
Frequency of the value = 6
True
First   second
A     C     A     DE    M Y
Hello, welcome to my world.
7



Exercises

1)- Write a program to change the capitalization of a user input string and add full stop at the end if it isn’t present.

Please enter a string: a QUick Brown FOX jumps OVer the Lazy doG
A quick brown fox jumps over the lazy dog.

2)- Write a program to give the following output-

Please enter a string: Python
P 
P y 
P y t 
P y t h 
P y t h o 
P y t h o n 

Print Share Comment Cite Upload Translate
APA
Aatmaj | Sciencx (2024-03-28T12:52:01+00:00) » Learning Python-Basic course: Day 22, String Methods part-1. Retrieved from https://www.scien.cx/2021/07/27/learning-python-basic-course-day-22-string-methods-part-1/.
MLA
" » Learning Python-Basic course: Day 22, String Methods part-1." Aatmaj | Sciencx - Tuesday July 27, 2021, https://www.scien.cx/2021/07/27/learning-python-basic-course-day-22-string-methods-part-1/
HARVARD
Aatmaj | Sciencx Tuesday July 27, 2021 » Learning Python-Basic course: Day 22, String Methods part-1., viewed 2024-03-28T12:52:01+00:00,<https://www.scien.cx/2021/07/27/learning-python-basic-course-day-22-string-methods-part-1/>
VANCOUVER
Aatmaj | Sciencx - » Learning Python-Basic course: Day 22, String Methods part-1. [Internet]. [Accessed 2024-03-28T12:52:01+00:00]. Available from: https://www.scien.cx/2021/07/27/learning-python-basic-course-day-22-string-methods-part-1/
CHICAGO
" » Learning Python-Basic course: Day 22, String Methods part-1." Aatmaj | Sciencx - Accessed 2024-03-28T12:52:01+00:00. https://www.scien.cx/2021/07/27/learning-python-basic-course-day-22-string-methods-part-1/
IEEE
" » Learning Python-Basic course: Day 22, String Methods part-1." Aatmaj | Sciencx [Online]. Available: https://www.scien.cx/2021/07/27/learning-python-basic-course-day-22-string-methods-part-1/. [Accessed: 2024-03-28T12:52:01+00:00]
rf:citation
» Learning Python-Basic course: Day 22, String Methods part-1 | Aatmaj | Sciencx | https://www.scien.cx/2021/07/27/learning-python-basic-course-day-22-string-methods-part-1/ | 2024-03-28T12:52:01+00:00
https://github.com/addpipe/simple-recorderjs-demo