sublime-text - sublime text 3中编译python(sublimeREPL),如何仅运行单行/选定部分
PHP中文网
PHP中文网 2017-04-18 10:31:23
0
2
613

在ST3中编译python时,默认是运行整个.py文件,可否只运行单行代码或选定的部分?

PHP中文网
PHP中文网

认证0级讲师

reply all(2)
PHPzhong

Python is an analytical language.

Python unit testing should be on your mind.

巴扎黑

Put the selected part into a function, and then call it inside the main function

def foo():
    print 'I was selected'

def main():
    foo()

if __name__ == "__main__":
    main()
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!