gpt4 book ai didi

python - 将代码的基本部分从 C++ 转换为 Python

转载 作者:行者123 更新时间:2023-11-27 22:48:17 26 4
gpt4 key购买 nike

我正在创建一个硬币游戏,现在已经用 C++ 创建了,但是我在将它转换为 Python 时遇到了一些问题。看来我无法弄清楚如何将诸如此循环之类的东西转换为 Python。

       void penniesLeftOver(int amountOfPenniesCurrent) //Displays the amount of Pennies left to the user.
{
cout << "Pennies Remaining: " << amountOfPenniesCurrent; //Displays the amount of Pennies remaining.
for (int i = 0; i < amountOfPenniesCurrent; i++)
{
cout << " o"; //Uses "o" to represent a Penny.
}

cout << "\n" << endl; //Starts a new line.
}

最佳答案

在 python 中,你可以将一个字符串乘以一个 int,它会创建一个新的字符串,它是重复 n 次的初始字符串。您可以一次 print() 多个东西。给出:

def penniesLeftOver(amountOfPenniesCurrent):
print("Pennies Remaining:", amountOfPenniesCurrent, " o"*amountOfPenniesCurrent)

关于python - 将代码的基本部分从 C++ 转换为 Python,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40747397/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com