摘要: 假如要用交互界面运行一个.py文件: 1 #用cmd界面定位到文件位置,如cd Desktop/data/ #进入desktop下data目录。 2 #接着打开python(输入python) 或者调用os 1 import os 2 os.getcwd() #查看当前目录 3 os.chdir(“ 阅读全文
posted @ 2018-10-12 18:27 Parallax 阅读(277) 评论(0) 推荐(0) 编辑
摘要: 1 PI = 3.14 2 3 def main(): 4 print("PI:", PI) 5 6 if __name__=="__main__": #:当此.py文件被直接运行,此行下的代码块被运行,当.py文件以模块包的形式被调用或导入时,则此行下的代码块不被运行(方便作为包调用执行,比如你只 阅读全文
posted @ 2018-10-12 18:12 Parallax 阅读(324) 评论(0) 推荐(0) 编辑
摘要: 1 from pythonds import Stack 2 def devideBybase(decnumber,base): #base==x 3 remstack = Stack() #空栈用来存储余数。 4 while decnumber>0: #eg. 2进制是一直除以2,直到商为0,将余 阅读全文
posted @ 2018-10-12 11:06 Parallax 阅读(220) 评论(0) 推荐(0) 编辑
摘要: 1 from pythonds import Stack 2 def parChecker(symbolString): 3 s = Stack() 4 balanced = True #声明一个布尔变量 5 index = 0 6 while index < len(symbolString) a 阅读全文
posted @ 2018-10-12 00:46 Parallax 阅读(217) 评论(0) 推荐(0) 编辑