亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

sublime-text - sublime text 3中編譯python(sublimeREPL),如何僅運(yùn)行單行/選定部分
PHP中文網(wǎng)
PHP中文網(wǎng) 2017-04-18 10:31:23
0
2
736

在ST3中編譯python時(shí),默認(rèn)是運(yùn)行整個(gè).py文件,可否只運(yùn)行單行代碼或選定的部分?

PHP中文網(wǎng)
PHP中文網(wǎng)

認(rèn)證0級(jí)講師

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