What I learnt Today
1.Various string operators
2.Various string methods
String Operators
a) Concatenation
This is adding strings together.
It is achieved by use of the plus sign (+)
b) Repetition
As the name suggests it is printing a string multiple times.
It is achieved by use of the asterisk sign(*)
String methods
Various string methods.
1.upper()
2.lower()
3.title()
4.strip()
5.len()
6.replace()
7.split()
Resources I used
I used github and python series by Bonaventure Ogeto
What's Next
Tomorrow I'll be learning about string formatting.
Top comments (0)