Python String MCQ With Answers & Explanation - Letsfindcourse
Python String MCQ With Answers & Explanation - Letsfindcourse
Python Basics
Data Types
Functions
Arguments
String
Python List
Python Tuple
Python Dictionary
Python Sets
Python OOPs
Inheritance
Regular Expression
Exception Handling
Python Reference
Learn Python
Python Quiz
Python Books
Other Reference
Quantitative Aptitude
Learn Django
str1="6/4"
print("str1")
A. 1
B. 6/4
C. 1.5
D. str1
View Answer
Ans : D
Explanation: Since in print statement, str1 is
written inside double quotes so it will simply print
str1 directly.
str1="python"
A. print(str1[2])
B. str1[1]="x"
C. print(str1[0:9])
D. Both (b) and (c)
View Answer
Ans : B
Explanation: Strings are immutable. So,new
values cannot be assigned at any index position
in a string
View Answer
Ans : B
Explanation: capitalize() function in string gives
the output by converting only the first character of
the string into uppercase and rest characters into
lowercase.However, upper() function is used to
return the whole string into uppercase.
str1="Information"
print(str1[2:8])
A. format
B. formatio
C. orma
D. ormat
View Answer
Ans : A
Explanation: Concept of slicing is used in this
question. In string slicing,the output is the
substring starting from the first given index
position i.e 2 to one less than the second given
index position i.e.(8-1=7) of the given string str1.
Hence, the output will be "format".
str1="Aplication"
str2=str1.replace('a','A')
print(str2)
A. application
B. Application
C. ApplicAtion
D. applicAtion
View Answer
Ans : C
Explanation: replace() function in string is used
here to replace all the existing "a" by "A" in the
given string.
str1="poWer"
str1.upper()
print(str1)
A. POWER
B. Power
C. power
D. poWer
View Answer
Ans : D
Explanation: str1.upper() returns the uppercase of
whole string str1. However,it doesnot change the
string str1. So, output will be the original str1.
str1.find("save")
View Answer
list1=[0,2,5,1]
str1="7"
for i in list1:
str1=str1+i
print(str1)
A. 70251
B. 7
C. 15
D. Error
View Answer
If str1="John,Simon,Aryan"
A. print(str1[-7:-12])
B. print(str1[-11:-7])
C. print(str1[-11:-6])
D. print(str1[-7:-11])
View Answer
str1="Stack of books"
print(len(str1))
A. 13
B. 14
C. 15
D. 16
View Answer
Discussion
Your comments
SUBMIT
!"#$%&'()*'*+,-#.%&-'%&'/0#0'1"2,-
!"#$%&'()*'*+,-#.%&-'%&'3&$,4.#0&5,
!"#$%&'()*'*+,-#.%&-'6'7&-8,4-'%&'9+&5#.%&-
!"#$%&':0-.5-'()*';.#$'7&-8,4-'6'<=2>0&0#.%&
?&>.&,'!"#$%&'!4%@40AA.&@'*+.B
!"#$%&'()*'*+,-#.%&-'%&')%&C.#.%&0>-'6'D%%2-
!"#$%&'()*'*+,-#.%&-'E'F.-#%4"'6'7G%+#
!"#$%&'/.5#.%&04"'()*';.#$'7&-8,4-'6
<=2>0&0#.%&
!"#$%&'()*'*+,-#.%&-'%&')>0--,-'0&C'?GH,5#-
!"#$%&'D.-#'()*';.#$'7&-8,4-'6'<=2>0&0#.%&
)%A2+#,4'I5.,&5,'()*'*+,-#.%&-'6'7&-8,4-
!"#$%&'()*'%&')%&C.#.%&0>-'0&C'D%%2-
Blogs