81. |
Which of the following formatting options can be used in order to add ‘n’ blank spaces after a given string ‘S’?
|
||||||||
Answer:
Option (d) |
82. |
What will be the output of the following Python expression if X = -122?
print(""-%06d""%x)
|
||||||||
Answer:
Option (c) |
83. |
What will be the output of the following Python expression if the value of x is 34?
print(“%f”%x)
|
||||||||
Answer:
Option (c) |
84. |
What will be the output of the following Python expression if x=56.236?
print(""%.2f""%x)
|
||||||||
Answer:
Option (b) |
85. |
What will be the output of the following Python expression if x=22.19?
print(""%5.2f""%x)
|
||||||||
Answer:
Option (c) |
86. |
The expression shown below results in an error.
print(""-%5d0"",989)
|
||||
Answer:
Option (b) |
87. |
What will be the output of the following Python code snippet?
'%d %s %g you' %(1, 'hello', 4.0)
|
||||||||
Answer:
Option (c) |
88. |
The output of which of the codes shown below will be: “There are 4 blue birds.”?
|
||||||||
Answer:
Option (b) |
89. |
What will be the output of the python code shown below for various styles of format specifiers?
x=1234
res='integers:...%d...%-6d...%06d' %(x, x, x)
res
|
||||||||
Answer:
Option (a) |
90. |
What will be the output of the following Python code snippet?
x=3.3456789
'%f | %e | %g' %(x, x, x)
|
||||||||
Answer:
Option (d) |