Strings Flashcards
What are strings?
quotation enclosed set of characters ‘abc”, ‘xyz’ ‘xxx’
operations on strings?
→ Concatenation
→ Repetition
→ Membership
→Slicing [Start:stop:step]
Concatenation?
a=”Hello”
b=”guys”
print(a+b)
Repetition?
a=”Hello”
print(a*2)
o/p: Hello Hello
Membership(in,notin)?
s= “computer science”
print(“science” in s) #true
print(“science” not in s) #false
capitalize()
First letter capital rest lower case
title()
First letter in each words becomes capital
lower()
each letter becomes lower case
upper()
each letter becomes upper case
find() and index()
Gives positive index number of first letter of that word
Keep in mind:(For built in functions way to type)
these built in functions are used as:
s= “computer science”
print(s.upper())
print(s.lower())
print(s.title())
print(s.find(“A”)) # 18 16 etc
Index and find difference
Index gives error if word not found
Find gives -1
count()
counts number of times a character appears in a string
startswith() endswith()
checks whether string starts/ends with letter in argument
str1= “Computer Science”
print(str1.startswith(C)) #TRUE
isalnum()
checks whether a string contains alphabets or numbers without spacebar
isalpha()
gives true if every character is alphabet
isdigit()
gives true if every character is number
islower()
gives true if every letter in lowercase
strip()
lstrip()
rstrip()
removes leading and trailing spaces in string
str1= ‘hello world”
print(str1.strip())
o/p: hello world
replace()
replaces character with new one