在ST3中编译python时,默认是运行整个.py文件,可否只运行单行代码或选定的部分?
认证0级讲师
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
main
def foo(): print 'I was selected' def main(): foo() if __name__ == "__main__": main()
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