Python Quizs Question and Answers – Formatting – 2

Q 1. The output of which of the codes shown below will be: “There are 4 blue birds.”?
A. ‘There are %g %d birds.’ %4 %blue
B. ‘There are %d %s birds.’ %(4, blue)
C. ‘There are %s %d birds.’ %[4, blue]
D. ‘There are %d %s birds.’ 4, blue

Show Answer Answer:-B. ‘There are %d %s birds.’ %(4, blue)
Explanation The code ‘There are %d %s birds.’ %(4, blue) results in the output: There are 4 blue birds. When we insert more than one value, we should group the values on the right in a tuple.

Q 2. 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

A. ‘integers:…1234…1234  …001234’
B. ‘integers…1234…1234…123400’
C. ‘integers:… 1234…1234…001234’
D. ‘integers:…1234…1234…001234’

Show Answer Answer:-A. ‘integers:…1234…1234  …001234’
Explanation The code shown above prints 1234 for the format specified %d, ‘1234  ’ for the format specifier %-6d (minus ‘-‘ sign signifies left justification), and 001234 for the format specifier %06d. Hence the output of this code is: ‘integers:…1234…1234  …001234’

Q 3. What will be the output of the following Python code snippet?

x=3.3456789

‘%f | %e | %g’ %(x, x, x)

A. Error
B. ‘3.3456789 | 3.3456789+00 | 3.345678’
C. ‘3.345678 | 3.345678e+0 | 3.345678’
D. ‘3.345679 | 3.345679e+00 | 3.34568’

Show Answer Answer:-D. ‘3.345679 | 3.345679e+00 | 3.34568’
Explanation The %f %e and %g format specifiers represent floating point numbers in different ways. %e and %E are the same, except that the exponent is in lowercase. %g chooses the format by number content. Hence the output of this code is: ‘3.345679 | 3.345679e+00 | 3.34568’.

Q 4. What will be the output of the following Python code snippet?

x=3.3456789

‘%-6.2f | %05.2f | %+06.1f’ %(x, x, x)

A. ‘3.35 | 03.35 | +003.3’
B. ‘3.3456789 | 03.3456789 | +03.3456789’
C. Error
D. ‘3.34 | 03.34 | 03.34+’

Show Answer Answer:-A. ‘3.35 | 03.35 | +003.3’
Explanation The code shown above rounds the floating point value to two decimal places. In this code, a variety of addition formatting features such as zero padding, total field width etc. Hence the output of this code is: ‘3.35 | 03.35 | +003.3’.

Q 5. What will be the output of the following Python code snippet?

x=3.3456789

‘%s’ %x, str(x)

A. Error
B. (‘3.3456789’, ‘3.3456789’)
C. (3.3456789, 3.3456789)
D. (‘3.3456789’, 3.3456789)

Show Answer Answer:-B. (‘3.3456789’, ‘3.3456789’)
Explanation We can simply convert strings with a %s format expression or the str built-in function. Both of these methods have been shown in this code. Hence the output is: ) (‘3.3456789’, ‘3.3456789’)

Q 6. What will be the output of the following Python code snippet?

‘%(qty)d more %(food)s’ %{‘qty’:1, ‘food’: ‘spam’}

A. Error
B. No output
C. ‘1 more foods’
D. ‘1 more spam’

Show Answer Answer:-D. ‘1 more spam’
Explanation String formatting also allows conversion targets on the left to refer to the keys in a dictionary coded on the right and fetch the corresponding values. In the code shown above, (qty) and (food) in the format string on the left refers to keys in the dictionary literal on the right and fetch their assorted values. Hence the output of the code shown above is: 1 more spam.

Q 7. What will be the output of the following Python code snippet?

a=’hello’

q=10

vars()

A. {‘a’ : ‘hello’, ‘q’ : 10, ……..plus built-in names set by Python….}
B. {……Built in names set by Python……}
C. {‘a’ : ‘hello’, ‘q’ : 10}
D. Error

Show Answer Answer:-A. {‘a’ : ‘hello’, ‘q’ : 10, ……..plus built-in names set by Python….}
Explanation The built in function vars() returns a dictionary containing all the variables that exist in the place. Hence the output of the code shown above is: {‘a’ : ‘hello’, ‘q’ : 10, ……..plus built-in names set by Python….}

Q 8. What will be the output of the following Python code?

s='{0}, {1}, and {2}’

s.format(‘hello’, ‘good’, ‘morning’)

A. ‘hello good and morning’
B. ‘hello, good, morning’
C. ‘hello, good, and morning’
D. Error

Show Answer Answer:-C. ‘hello, good, and morning’
Explanation Within the subject string, curly braces designate substitution targets and arguments to be inserted either by position or keyword. Hence the output of the code shown above:’hello, good,and morning’.

Q 9. What will be the output of the following Python code?

s=’%s, %s & %s’

s%(‘mumbai’, ‘kolkata’, ‘delhi’)

A. mumbai kolkata & delhi
B. Error
C. No output
D. ‘mumbai, kolkata & delhi’

Show Answer Answer:-
Explanation In the code shown above, the format specifier %s is replaced by the designated substitution. Hence the output of the code shown above is: ‘mumbai, kolkata & delhi’.

Q 10. What will be the output of the following Python code?

t = ‘%(a)s, %(b)s, %(c)s’

t % dict(a=’hello’, b=’world’, c=’universe’)

A. ‘hello, world, universe’
B. ‘hellos, worlds, universes’
C. Error
D. hellos, world, universe

Show Answer Answer:-A. ‘hello, world, universe’
Explanation Within the subject string, curly braces represent substitution targets and arguments to be inserted. Hence the output of the code shown above: ‘hello, world, universe’.

Q 11. What will be the output of the following Python code?

‘{a}, {0}, {abc}’.format(10, a=2.5, abc=[1, 2])

A. Error
B. ‘2.5, 10, [1, 2]’
C. 2.5, 10, 1, 2
D. ’10, 2.5, [1, 2]’

Show Answer Answer:-B. ‘2.5, 10, [1, 2]’
Explanation Since we have specified that the order of the output be: {a}, {0}, {abc}, hence the value of associated with {a} is printed first followed by that of {0} and {abc}. Hence the output of the code shown above is: ‘2.5, 10, [1, 2]’.

Q 12. What will be the output of the following Python code?

‘{0:.2f}’.format(1.234)

A. ‘1’
B. ‘1.234’
C. ‘1.23’
D. ‘1.2’

Show Answer Answer:-C. ‘1.23’
Explanation The code shown above displays the string method to round off a given decimal number to two decimal places. Hence the output of the code is: ‘1.23’.

Q 13. What will be the output of the following Python code?

‘%x %d’ %(255, 255)

A. ‘ff, 255’
B. ‘255, 255’
C. ‘15f, 15f’
D. Error

Show Answer Answer:-A. ‘ff, 255’
Explanation The code shown above converts the given arguments to hexadecimal and decimal values and prints the result. This is done using the format specifiers %x and %d respectively. Hence the output of the code shown above is: ‘ff, 255’.

Q 14. The output of the two codes shown below is the same.

i.'{0:.2f}’.format(1/3.0)

ii. ‘%.2f’%(1/3.0)

A. True
B. False

Show Answer Answer:-A. True
Explanation The two codes shown above represent the same operation but in different formats. The output of both of these functions is: ‘0.33’. Hence the statement is true.

Q 15. What will be the output of the following Python code snippet?

‘%d %s %g you’ %(1, ‘hello’, 4.0)

A. Error
B. 1 hello you 4.0
C. 1 hello 4 you
D. 1 4 hello you

Show Answer Answer:-C. 1 hello 4 you
Explanation In the snippet of code shown above, three values are inserted into the target string. When we insert more than one value, we should group the values on the right in a tuple. The % formatting expression operator expects either a single item or a tuple of one or more items on its right side.

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *

You cannot copy content of this page