Presentation is loading. Please wait.

Presentation is loading. Please wait.

COMPSCI 101 Principles of Programming Lecture 5 – Manipulating strings, String functions, dot notation.

Similar presentations


Presentation on theme: "COMPSCI 101 Principles of Programming Lecture 5 – Manipulating strings, String functions, dot notation."— Presentation transcript:

1 COMPSCI 101 Principles of Programming Lecture 5 – Manipulating strings, String functions, dot notation

2 Learning outcomes  At the end of this lecture, students should be able to:  use dot notation when using string functions with string instances  use string functions: upper(), lower(), strip(), find(), rfind()  use the inbuilt functions: min(), max(), round(), abs() CompSci 1012

3  What is the output after executing the following code? words = " Prince Charming " print(words[3]) print(words[-5]) print(words[len(words)-1]) print(words[3:6]) print(words[:6]) print(words[6:]) print(words[len(words)-3:]) words = " Prince Charming " print(words[3]) print(words[-5]) print(words[len(words)-1]) print(words[3:6]) print(words[:6]) print(words[6:]) print(words[len(words)-3:]) Recap CompSci 1013

4 Dot notation  Every object type, as well as storing some data, has some defined functions which can be applied to that particular type of object.  Variables which reference an object are called instances,  e.g., in the following code, greeting is a string instance and number is an instance of type int.  In order to apply a function to an object we use dot notation, i.e., the variable name, followed by a dot, followed by the function name. greeting = "Hello World" number = 234 greeting = "Hello World" number = 234 CompSci 1014 instance_name. function_name(…) Note that we use parentheses after the function name.

5 String functions  String instances have many functions which can be applied to them.  Such as upper(), lower(), find(), strip(), isalpha(), isdigit(), rfind(), split() ….  In this lecture we will look at a few of these functions. CompSci 1015

6 String functions – upper(), lower()  The upper() function returns a new string object with all the characters converted to upper case.  The lower() function returns a new string object with all the characters converted to lower case.  For example, Hello World hello world HELLO WORLD greeting = "Hello World" greeting_lower = greeting.lower() greeting_upper = greeting.upper() print(greeting) print(greeting_lower) print(greeting_upper) greeting = "Hello World" greeting_lower = greeting.lower() greeting_upper = greeting.upper() print(greeting) print(greeting_lower) print(greeting_upper) CompSci 1016 Notice that there are three string objects DEMO Example01.py

7 String functions – find()  The find() function is used to look for the position or index number of the first occurrence (from the left) of some characters.  If the characters are found, the find() function returns the index number, otherwise the function returns -1.  For example, 5 7 H 0 e 1 l 2 l 3 o 45 W 6 o 7 r 8 l 9 d 10 greeting 010100101 position1 = greeting.find(" ") position2 = greeting.find("z") position3 = greeting.find("orl") print(position1) print(position2) print(position3) position1 = greeting.find(" ") position2 = greeting.find("z") position3 = greeting.find("orl") print(position1) print(position2) print(position3) CompSci 1017 DEMO Example01.py

8 String functions – rfind()  The rfind() function is used to look for the position of the last occurrence (from the right) of some characters.  If the characters are found, the rfind() function returns the index number, otherwise the function returns -1.  For example, H 0 e 1 l 2 l 3 o 45 W 6 o 7 r 8 l 9 d 10 greeting 010100101 position1 = greeting.find("o") position2 = greeting.rfind("o") position3 = greeting.rfind("orl") position4 = greeting.rfind("lro") print(position1)... position1 = greeting.find("o") position2 = greeting.rfind("o") position3 = greeting.rfind("orl") position4 = greeting.rfind("lro") print(position1)... 4 7 CompSci 1018 DEMO Example01.py From left… Index : 4 From right… Index 7

9 String functions – strip()  The strip() function function removes all white space from the beginning and end of the string.  Note: it does not remove spaces from inside the string.  For example, letters1 = " H e l l o oooo " letters2 = letters1.strip() length1 = len(letters1) length2 = len(letters2) print(length1, length2) print(letters1, "*") print(letters2, "*") letters1 = " H e l l o oooo " letters2 = letters1.strip() length1 = len(letters1) length2 = len(letters2) print(length1, length2) print(letters1, "*") print(letters2, "*") 21 14 H e l l o oooo * CompSci 1019 DEMO Example01.py Spaces are removed from the end Spaces are removed from the beginning

10 Exercise 1  What is the output after executing the following code? CompSci 10110 s = "Programming is fun" print(s.find('ram')) print(s.find('rom')) print(s.find('m')) print(s.rfind('m')) s = "Programming is fun" print(s.find('ram')) print(s.find('rom')) print(s.find('m')) print(s.rfind('m'))

11 Programming Exercise 1  Complete the following program so that it prints the initial from the first name followed by a full stop, a space and followed by the surname. Assume the full name is always two names separated by one space. W. Auden full_name = "Wystan Auden" initialled_name = first_letter + ". " + last_name print(initialled_name) full_name = "Wystan Auden" initialled_name = first_letter + ". " + last_name print(initialled_name) CompSci 10111

12 Algorithm Find the position of the spaceGet the first letterConvert it to upper caseGet the last name (position_blank + 1 … end)Print the result (first_letter + ". " + last_name) CompSci 10112 W 0 y 1 s 2 t 3 a 45 6 A 7 u 8 d 9 e 10 position_blank n 11 n full_name[0] [position_blank + 1:] W. Auden

13 Common Python inbuilt functions  min() is an inbuilt function which can be used to find the smallest number from a comma separated set of numbers  max() is the inbuilt function which can be used to find the largest number from a comma separated set of numbers, e.g., num1 = 32 num2 = 16 smallest = min(num1, num2) print(smallest) smallest = min(32.7, 56.4, 3, -1.1, 56.99, -1.2) print(smallest) largest = max(num1, num2) print(largest) largest = max(32.7, 56.4, 3, -1.1, 56.99, -1.2) print(largest) num1 = 32 num2 = 16 smallest = min(num1, num2) print(smallest) smallest = min(32.7, 56.4, 3, -1.1, 56.99, -1.2) print(smallest) largest = max(num1, num2) print(largest) largest = max(32.7, 56.4, 3, -1.1, 56.99, -1.2) print(largest) 16 -1.2 32 56.99 CompSci 10113 DEMO Example02.py

14 Common Python inbuilt functions  The function, round(), is used to round numbers to the closest whole number (or rounded to a number of digits after the decimal point) e.g.,  round(number[, ndigits])  Return the floating point value number rounded to ndigits digits after the decimal point. num1 = 32.657123 num2 = 16.48926 num3 = -16.48926 print(round(num1)) print(round(num2)) print(round(num3)) num1 = 32.657123 num2 = 16.48926 num3 = -16.48926 print(round(num1)) print(round(num2)) print(round(num3)) 33 16 -16 CompSci 10114 32.66 16.489 print(round(num1, 2)) print(round(num2, 3)) print(round(num1, 2)) print(round(num2, 3)) Rounded to 2 digits after the decimal point Rounded to 3 digits after the decimal point DEMO Example02.py

15 Common Python inbuilt functions  The function, abs(), is used to get the absolute value (the magnitude) of a number (int or float), e.g., num1 = 32 num2 = -32 num3 = abs(num2 - num1) print(abs(num1)) print(abs(num2)) print(num3) num1 = 32 num2 = -32 num3 = abs(num2 - num1) print(abs(num1)) print(abs(num2)) print(num3) 32 64 CompSci 10115 DEMO Example02.py

16 round() – Unexpected Result  Sometimes the round() function seems to give an unexpected result e.g.,  If two multiples are equally close, rounding is done toward the even choice num1 = 1.5 num2 = 2.5 num3 = 3.5 print(round(num1)) print(round(num2)) print(round(num3)) num1 = 1.5 num2 = 2.5 num3 = 3.5 print(round(num1)) print(round(num2)) print(round(num3)) 224224 CompSci 10116 surprising result 12 3 4 5 0

17 Exercise 2  What is the output after executing the following code? CompSci 10117 print(min(3, 5, 1, 7, 4)) print(max(3, 5, 1, 7, 4)) print(round(3.52)) print(round(6.5)) print(round(7.5)) print(min(3, 5, 1, 7, 4)) print(max(3, 5, 1, 7, 4)) print(round(3.52)) print(round(6.5)) print(round(7.5))

18 Programming Exercise 2  Complete the following program so that it prints the total tax rounded to a whole number.  The first $14000 is not taxed. The next amount up to $38000 is taxed at 24% and the rest is taxed at 34%. salary = 54000 no_tax_boundary = 14000 rate1_boundary = 38000 rate1 = 0.24 rate2 = 0.34 print("===============================") print("Total tax: $", total_tax, sep = "") print("===============================") salary = 54000 no_tax_boundary = 14000 rate1_boundary = 38000 rate1 = 0.24 rate2 = 0.34 print("===============================") print("Total tax: $", total_tax, sep = "") print("===============================") Salary: $54000 Amount to be taxed at: 24.0%: $24000 Tax at rate1: $5760.0 Amount to be taxed at: 34.0%: $16000 Tax at rate2: $5440.0 =============================== Total tax: $11200 =============================== CompSci 10118

19 Cases: CompSci 10119 Salary: $12000 $12000 Rate= 24% Rate= 34% Rate= 0% $14000 Rate= 24% Rate= 34% Rate= 0% Salary: $20000 $6000 $14000 Rate= 24% Rate= 34% Rate= 0% Salary: $54000 $24000 $16000 taxable2 taxable1

20 Algorithm Calculate taxable2 Zero or salary - rate1_boundary Calculate taxable1 Zero or rate1_boundary - no_tax_boundary Calculate the tax amount on taxable1Calculate the tax amount on taxable2Calculate the total tax CompSci 10120

21 Summary  In Python:  use dot notation when using string functions with string instances  the string functions: upper(), lower(), strip(), find(), rfind() can be used with string instances  the inbuilt functions: min(), max(), round() can be used CompSci 10121


Download ppt "COMPSCI 101 Principles of Programming Lecture 5 – Manipulating strings, String functions, dot notation."

Similar presentations


Ads by Google