31 Whatwillbedisplayedbythefollowingcode??(note?representsablankspace)()print(format("Welcome", ">10s"),end= '#')print(format(111, "<4d"),end= '#')print(format(924.656, ">10.2f"))
B
???Welcome#?111#????924.66
C
???Welcome#111?#????924.66
D
Welcome???#111?#????924.66