首页题库练习题目详情
Python程序设计单选题中等

以下哪个 print() 函数调用能用指定的格式输出信息?

Aprint('Formatted: {0} {1}'.format(1, 2))
Bprint('Formatted: %d %d' % (1, 2))
Cprint(f'Formatted: {1} {2}')
Dprint('Formatted: ', 1, 2)