摘要:
代码: import os #os.system('python hello1.py') while 1: print("****************\n") print("****************\n") num = input("please input a num: ") try: 阅读全文
摘要:
test1.py代码: 1 def disp(): 2 print 'hello world!' 同目录下test2.py代码: 1 import test1 2 3 print 'Hello jju!' 4 test1.disp() 执行结果没问题 阅读全文
摘要:
代码main.py: 1 from PyQt5 import QtCore, QtGui, QtWidgets 2 import faceSet 3 4 5 class Ui_MainWindow(object): 6 def setupUi(self, MainWindow): 7 MainWin 阅读全文