在ST3中编译python时,默认是运行整个.py文件,可否只运行单行代码或选定的部分?
PHPz2017-04-18 10:33:23
Python is an analytical language.
Python unit testing should be on your mind.
巴扎黑2017-04-18 10:33:23
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()