摘要:
import subprocess subprocess.run("notepad") 将会打开记事本。 如果当前路径下有个叫test.txt,而想用记事本打开这个文本文件: import subprocess subprocess.run(["notepad", "test.txt"]) 执行cm 阅读全文
摘要:
入门 新建sample.dot文件,打开编辑为: digraph g{ x y } 在命令行中输入 dot sample.dot -T png -o sample.png -T后接要生成的图片格式,可以是pdf、svg格式等。 -o指明生成文件名 指定节点属性 digraph g{ 1 [label 阅读全文
摘要:
可以通过重写python类的__repr__方法来自定义print函数输出的字符串: class DIYPrint: def __repr__(self): return "哈哈哈" d = DIYPrint() print(d) 输出为: 哈哈哈 阅读全文
摘要:
@property让一个方法可以作为实例变量来访问 class testProperty: def __init__(self): self.prop = "牛逼" def getProp(self): return self.prop t = testProperty() p = t.getPro 阅读全文