【填空题】下列Python语句的输出结果是____。 print("1".rjust(20," ")) print(format("121",">20")) print(format("12321",">20"))
举一反三
- 语句print("{0:=^20}".format("Python"))输出结果是: ==============Python|=======Python=======|Python|Python==============
- 设str = '吵=口+少',输出结果为“吵口少”的print语句是:() A: print('{}'.format(str[::2])) B: print('{}'.format(str[::-1])) C: print('{}'.format(str[::])) D: print('{}'.format(str))
- 语句Print Format$(32548.5,“###,###.###”)的输出结果是()
- 语句Print Format(“Hello World”,“>”)的输出结果是()
- 以下语句的输出结果是()。Print Format$(1234.5, "00,000.00")