如何在Python中使用键盘进行复制和粘贴?
另外,有什么功能可以使用键盘来控制,以便更有效地创建程序吗?
谢谢
Also, are there any functions I can use keyboard to control in order to create a program more efficiently?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的意思是要在 Python 命令行中复制/粘贴源代码/文本吗?
如果您使用的是 Windows,它的工作方式就像任何 DOS 控制台一样。我建议您打开 Python 控制台,单击左上角图标并选择“属性”。然后,在选项选项卡上,选中“插入模式”和“快速编辑模式”复选框。
现在,您可以通过用鼠标突出显示文本并按 Enter 来复制文本,并通过在窗口内右键单击来粘贴文本。
Do you mean that you want to copy/paste source code/text in the Python command line?
If you're on Windows, it works just like any DOS console. I recommend you open your Python console, click on the left upper icon and select "Properties". Then, on the options tab, check the "Insert mode" and "Quick Edit mode" checkboxes.
Now you can copy text by highlighting it with your mouse and pressing Enter, and paste text by right-clicking inside the window.