提问人:Santhosh 提问时间:6/4/2023 最后编辑:MattDMoSanthosh 更新时间:6/6/2023 访问量:52
sublime text 插件帮助:如何在 python 中使用 print 输出到控制台
sublime text plugin help: How to output to console using print in python
问:
我正在使用一个名为侧边栏增强功能的崇高文本插件。
它的功能之一存在一些问题。所以我在插件的源代码中添加了一些 print 语句
我无法在控制台中看到我放入源代码中的打印语句输出
例如,我将源代码更改为这样的东西。
class SideBarFilesOpenWithCommand(sublime_plugin.WindowCommand):
def run(self, paths=[], application="", extensions="", args=[], multiple=False):
print("Hello World")
我希望出现在控制台中 (ctrl + ')Hello World
即
答: 暂无答案
评论
WindowCommand