• 2022-07-02
    求format()函数值: >>>"{} {}".format("hello", "world") 返回值为() >>> "{0} {1}".format("hello", "world") 返回值为() >>> "{1} {0} {1}".format("hello", "world") 返回值为()