Python 在打印变量后打印文本

发布于 2025-01-06 11:54:44 字数 219 浏览 0 评论 0原文

所以我想在打印我的变量后打印一些文本,如下所示:

print('Blablabla' var ' blablabla')

现在它看起来像这样:

 print('The enemey gets hit for %d' % damage)

我想在打印损坏变量后打印单词“Hitpoints”。

So I wanna print some text after i print my variables like this:

print('Blablabla' var ' blablabla')

Right now it looks like this:

 print('The enemey gets hit for %d' % damage)

I wanna print the word "Hitpoints" after I've printed the damage variable.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

滴情不沾 2025-01-13 11:54:44

只需包含命中点:

print('The enemey gets hit for %d hitpoints' % damage)

格式化运算符 % 非常强大,请查看 所有占位符选项。但是,它旨在逐步淘汰,以支持 str.format

print('The enemey gets hit for {} hitpoints'.format(damage))

或者,您可以将 damage 的值转换为字符串,并使用 + 连接字符串:

print('The enemy gets hit for ' + str(damage) + ' hitpoints')

Just include the hitpoints:

print('The enemey gets hit for %d hitpoints' % damage)

The formatting operator % is very powerful, have a look at all the placeholder options. It is, however, intended to be phased out in favor of str.format:

print('The enemey gets hit for {} hitpoints'.format(damage))

Alternatively, you can convert the value of damage to a string, and concatenate strings with +:

print('The enemy gets hit for ' + str(damage) + ' hitpoints')
別甾虛僞 2025-01-13 11:54:44

这样看起来好多了。 ;0)

damage = 10
print(f'The enemey gets hit for {damage} hitpoints')

(对于 python 3.6 及以上版本)

Looks much nicer this way. ;0)

damage = 10
print(f'The enemey gets hit for {damage} hitpoints')

(for python 3.6 & above)

简美 2025-01-13 11:54:44

只需将 hitpoints 添加到您的字符串中即可:

print('the enemy gets mutilated for %d hitpoints!' % damage)

Just add hitpoints to your string:

print('the enemy gets mutilated for %d hitpoints!' % damage)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文