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

如何将字符串'Python'重复5次并输出?

Aprint('Python' + 5)
Bprint('Python' * 5)
Cprint(5 * 'Python')
Dprint('Python'[5])