在文本编辑器中向字符串添加空格

发布于 2025-01-10 05:31:02 字数 465 浏览 0 评论 0原文

我是 Python 的新手,因此我的问题可能有点愚蠢。

但我仍然想知道是否可以在“文本编辑器”中做同样的事情,就像在“终端”中一样 - 理论上,应该是可能的!

我的问题是关于一个变量,例如: known_people = =" Albert Einstein "

您可以编写 print(known_people) 或仅known_people,然后按 Enter 键。

结果将显示为 ' Albert Einstein '

如果想要删除引号之间的空格,您可以编写以下内容,

known_people.strip(),结果将是,

'Albert Einstein'

如何在“Sublime text”或其他文本编辑器中执行相同的操作。 ???

I am a newbie to Python, and my question is therefore maybe a little silly.

But I still want to know if it is possible to do the same thing in "Text Editor", like in the "Terminal" - in theory, it should be possible!!

My question is about a variable like:
famous_people =" Albert Einstein " ,

you write print(famous_people) or just famous_people and press enter.

The result will show as ' Albert Einstein '

If then want to remove the space between the quotations marks you ten write the following,

famous_people.strip() and the result will be,

'Albert Einstein'

How do you do the same thing in "Sublime text" or another text editor. ???

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文