101. |
The output of the two codes shown below is the same.
i. '{0:.2f}'.format(1/3.0)
ii. '%.2f'%(1/3.0)
|
||||
Answer:
Option (a) |
102. |
What will be the output of the following Python code?
l=list('HELLO')
'first={0[0]}, third={0[2]}'.format(l)
|
||||||||
Answer:
Option (a) |
103. |
What will be the output of the following Python code?
l=list('HELLO')
p=l[0], l[-1], l[1:3]
'a={0}, b={1}, c={2}'.format(*p)
|
||||||||
Answer:
Option (c) |
104. |
The formatting method {1:<10} represents the ___________ positional argument, _________ justified in a 10 character wide field.
|
||||||||
Answer:
Option (b) |
105. |
The output of the two codes shown below is the same.
bin((2**16)-1)
'{}'.format(bin((2**16)-1))
|
||||
Answer:
Option (a) |
106. |
What will be the output of the following Python code?
'{a}{b}{a}'.format(a='hello', b='world')
|
||||||||
Answer:
Option (c) |
107. |
What will be the output of the following Python code?
D=dict(p=‘gtu’, q=‘chandkheda’)
'{p}{q}'.format(**D)
|
||||||||
Answer:
Option (b) |
108. |
What will be the output of the following Python code?
'The {} side {1} {2}'.format('bright', 'of', 'life')
|
||||||||
Answer:
Option (a) |
109. |
What will be the output of the following Python code?
'{0:f}, {1:2f}, {2:05.2f}'.format(1.23456, 1.23456, 1.23456)
|
||||||||
Answer:
Option (d) |
110. |
What will be the output of the following Python code?
'%.2f%s' % (1.2345, 99)
|
||||||||
Answer:
Option (b) |