Sovi.AI - AI Math Tutor

Scan to solve math questions

QUESTION IMAGE

question # 4 dropdown you want the output to be left justified in a fie…

Question

question # 4
dropdown
you want the output to be left justified in a field that is nine characters wide. what format string do you need?
print({:<>}.format(23))

Explanation:

Brief Explanations

In Python's string formatting, the format specifier for left - justifying in a field of width 9 is '<9'. The '<' indicates left - justification and the number '9' is the width of the field.

Answer:

<9