Strings Flashcards

1
Q

What are strings?

A

quotation enclosed set of characters ‘abc”, ‘xyz’ ‘xxx’

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

operations on strings?

A

→ Concatenation
→ Repetition
→ Membership
→Slicing [Start:stop:step]

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Concatenation?

A

a=”Hello”
b=”guys”
print(a+b)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Repetition?

A

a=”Hello”
print(a*2)
o/p: Hello Hello

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Membership(in,notin)?

A

s= “computer science”
print(“science” in s) #true
print(“science” not in s) #false

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

capitalize()

A

First letter capital rest lower case

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

title()

A

First letter in each words becomes capital

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

lower()

A

each letter becomes lower case

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

upper()

A

each letter becomes upper case

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

find() and index()

A

Gives positive index number of first letter of that word

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Keep in mind:(For built in functions way to type)

A

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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Index and find difference

A

Index gives error if word not found
Find gives -1

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

count()

A

counts number of times a character appears in a string

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

startswith() endswith()

A

checks whether string starts/ends with letter in argument
str1= “Computer Science”
print(str1.startswith(C)) #TRUE

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

isalnum()

A

checks whether a string contains alphabets or numbers without spacebar

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

isalpha()

A

gives true if every character is alphabet

17
Q

isdigit()

A

gives true if every character is number

18
Q

islower()

A

gives true if every letter in lowercase

19
Q

strip()
lstrip()
rstrip()

A

removes leading and trailing spaces in string
str1= ‘hello world”
print(str1.strip())
o/p: hello world

20
Q

replace()

A

replaces character with new one