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"))1.Welcome# 111#924.66
2.Welcome#111#924.66
3.Welcome#111#.66
4.Welcome # 111#924.66
Posted Date:-2021-12-30 07:39:37