String Examples Flashcards
print(“hello and welcome!”.capitalize())
Hello and welcome!
print(“Hello And Welcome!”.casefold())
hello and welcome!
print(“hello”.center(10, ‘m’))
mmhellommm
print(“hello”.center(11, ‘m’))
mmmhellommm
print(“hello”.center(5, ‘m’))
hello
print(“apples to apples”.count(‘apple’))
2
print(‘Hello!’.endswith(‘!’))
True
print(‘Hello boy!’.endswith(‘boy!’, 3,7))
False
print(‘Hello boy!’.endswith(‘boy!’, 6,10))
True
txt = “H\te\tl\tl\to”
x = txt.expandtabs(2)
print(x)
H e l l o
txt = “H\te\tl\tl\to”
x = txt.expandtabs(4)
print(x)
#3 spaces in between H e l l o
print(“Hello, welcome to my world.”.find(“welcome”))
7
print(“This code is written in {}”.format(“Python”))
This code is written in Python
txt = “Hello, welcome to my world.”
x = txt.index(“welcome”)
print(x)
7
txt = “Company12”
x = txt.isalnum()
print(x)
True
txt = “CompanyX”
x = txt.isalpha()
print(x)
True
txt = “\u0033” #unicode for 3
x = txt.isdecimal()
print(x)
True
txt = “50800”
x = txt.isdigit()
print(x)
True
txt = “Demo”
x = txt.isidentifier()
print(x)
True
txt = “hello world!”
x = txt.islower()
print(x)
True
txt = “565543”
x = txt.isnumeric()
print(x)
True
txt = “Hello! Are you #1?”
x = txt.isprintable()
print(x)
True
txt = “ “
x = txt.isspace()
print(x)
True
txt = “Hello, And Welcome To My World!”
x = txt.istitle()
print(x)
True
txt = “THIS IS NOW!”
x = txt.isupper()
print(x)
True
myTuple = (“John”, “Peter”, “Vicky”)
x = “#”.join(myTuple)
print(x)
John#Peter#Vicky
txt = “banana”
x = txt.ljust(20)
print(x, “is my favorite fruit.”)
#There's 15 spaces between 'banana' and 'is' banana is my favorite fruit.
txt = “Hello my FRIENDS”
x = txt.lower()
print(x)
hello my friends
#5 spaces to the left and right of banana txt = " banana "
x = txt.lstrip()
print(“of all fruits”, x, “is my favorite”)
#1 space to the left of banana and 5 to the right of all fruits banana is my favorite
txt = “I could eat bananas all day”
x = txt.partition(“bananas”)
print(x)
(‘I could eat ‘, ‘bananas’, ‘ all day’)
txt = “I like bananas”
x = txt.replace(“bananas”, “apples”)
print(x)
I like apples
txt = “Mi casa, su casa.”
x = txt.rfind(“casa”)
print(x)
12
txt = “Mi casa, su casa.”
x = txt.rindex(“casa”)
print(x)
12
txt = “banana”
x = txt.rjust(20)
print(x, “is my favorite fruit.”)
#14 spaces to the left of 'banana' banana is my favorite fruit.
txt = “I could eat bananas all day, bananas are my favorite fruit”
x = txt.rpartition(“bananas”)
print(x)
(‘I could eat bananas all day, ‘, ‘bananas’, ‘ are my favorite fruit’)
txt = “apple, banana, cherry”
x = txt.rsplit(“, “)
print(x)
[‘apple’, ‘banana’, ‘cherry’]
#5 spaces to the left and right of 'banana' txt = " banana "
x = txt.rstrip()
print(“of all fruits”, x, “is my favorite”)
#5 spaces to the left of banana and 1 to the right of all fruits banana is my favorite
txt = “welcome to the jungle”
x = txt.split()
print(x)
[‘welcome’, ‘to’, ‘the’, ‘jungle’]
txt = “Hello My Name Is PETER”
x = txt.swapcase()
print(x)
hELLO mY nAME iS peter
txt = “Welcome to my world”
x = txt.title()
print(x)
Welcome To My World
txt = “Hello my friends”
x = txt.upper()
print(x)
HELLO MY FRIENDS
txt = “50”
x = txt.zfill(4)
print(x)
0050
txt = “50”
x = txt.zfill(5)
print(x)
00050
print(‘banana’.ljust(15),”is my favorite fruit.”)
#10 spaces to the right of 'banana' banana is my favorite fruit.
txt = ‘what up dawg’
a,b,c = txt.split()
print(b)
up