What Will Be The Output Of The Following Python Statementpython #236
What will be the output of the following Python statement?(python 3.xx)</p> <pre><code class="language-python"> >>>print(format("Welcome", "10s"), end = '#') >>>print(format(111, "4d"), end = '#') >>>print(format(924.656, "3.2f")) </code></pre>
This multiple choice question (MCQ) is related to the book/course gs gs109 Python. It can also be found in gs gs109 Python Strings - Python Strings - Quiz No.3.
What will be the output of the following Python statement?(python 3.xx)
>>>print(format("Welcome", "10s"), end = '#') >>>print(format(111, "4d"), end = '#') >>>print(format(924.656, "3.2f"))
Welcome# 111#924.66
Welcome#111#924.66
Welcome#111#.66
Welcome # 111#924.66