String WK Flashcards

String WK answers full

1
Q
  1. What will be the output of following code-
    str=”hello”
    str[:2]
A

“he”

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

💡 Question: What will be the output?

str = ‘Hello’
res = ‘’
for i in range(len(str)):
res = res + str[i]
print(res)

A

✅ Answer: “Hello” (Each character is added to res and printed)

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

💡 Question: What is the output?

s = ‘Hi!’
s1 = ‘Hello’
s2 = s[:2] + s1[len(s1) - 2:]
print(s2)

A

✅ Answer: “Hilo”

s[:2] → “Hi”
s1[len(s1)-2:] → “lo”
Final output: “Hilo”

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

💡 Question: What will ‘ba’ + ‘na’ * 2 output?

A

✅ Answer: “banana”

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

💡 Question: What will be printed?

s = ‘Hello’
for i in s:
print(i, end=’#’)

A

H#e#l#l#o#

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

💡 Question: What will be the output?

a = ‘hello’
b = ‘virat’
for i in range(len(a)):
print(a[i], b[i])

A

h v
e i
l r
l a
o t

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

a = ‘hello’
b = ‘virat’
for i in range(len(a)):
print(a[i].upper(), b[i])

A

H v
E i
L r
L a
O t

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

str1 = “PYTHON PROGRAMMING”
print(str1[1:4], str1[:5], str1[4:], str1[0:-1], str1[:-1])

A

YTH PYTH ON PROGRAMMING PYTHON PROGRAMMIN PYTHON PROGRAMMIN

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

s = “learning is fun”
n = len(s)
m = ‘ ‘
for i in range(0, n):
if (s[i] >= ‘a’ and s[i] <= ‘m’):
m = m + s[i].upper()
elif (s[i] >= ‘n’ and s[i] <= ‘z’):
m = m + s[i - 1]
elif (s[i].isupper()):
m = m + s[i].lower()
else:
m = m + ‘#’
print(m)

A

LEAarIiG#Ii#Ffu

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

str =’Hello Python’
print(str)
print(str[0])
print(str[2:8])
print(str[3:])
print(str * 3)
print(str + “String”)

A

Hello Python
H
llo Py
lo Python
Hello PythonHello PythonHello Python
Hello PythonString

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

str = “Python Program123”
for i in range(len(str)):
if str[i].isalpha():
print(str[i-1], end=’’)
if str[i].isdigit():
print(str[i], end=’’)

A

3Pytho Progra123

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

💡 Question: How do you count vowels in a string?

A

vowels = “AEIOUaeiou”
s = input(“Enter a string: “)
count = sum(1 for ch in s if ch in vowels)
print(“Number of vowels:”, count)

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

💡 Question: How do you replace spaces with dashes in a string?

A

s = input(“Enter a string: “)
print(s.replace(“ “, “-“))

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

💡 Question: How do you count words and characters in a string?

A

s = input(“Enter a string: “)
words = len(s.split())
characters = len(s)
print(“Words:”, words, “Characters:”, characters)

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

💡 Question: How do you check if a string is a palindrome?

A

s = input(“Enter a string: “)
if s == s[::-1]:
print(“Palindrome”)
else:
print(“Not a palindrome”)

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

💡 Question: How do you convert uppercase to lowercase and vice versa in a string?

A

s = input(“Enter a string: “)
print(s.swapcase())