F 字符串换行返回

发布于 2025-01-17 15:25:52 字数 1469 浏览 0 评论 0原文

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

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

发布评论

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

评论(1

夜夜流光相皎洁 2025-01-24 15:25:52

如@selcuk所确定的,您的某些字符串包含空格。

您可以使用str.Strip()剥离Whitespaces(包括Newline)。它可以在您的情况下删除周围的环境(字符串之前或之后)

,您可以替换与此相关的bpm行(或周围有围墙周围的任何行)。

...
(f"{self.bpm.strip()} BPM"), 
...

As identified by @Selcuk, some of your strings contains whitespaces.

You can strip whitespaces (that includes newline) by using str.strip(). It removes surrounding whitespaces (before or after the string)

In your case, you can replace your BPM line (or any line that has whitespaces around it) with this.

...
(f"{self.bpm.strip()} BPM"), 
...
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文