在文本编辑器中向字符串添加空格
我是 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论