Python电路图
import schemdrawimport schemdraw.elements as elm
with schemdraw.Drawing(file='schematic.svg') as d:
d += elm.Resistor().label('100KΩ')
d += elm.Capacitor().down().label('0.1μF', loc='bottom')
d += elm.Line().left()
d += elm.Ground()
d += elm.SourceV().up().label('10V') Ω 读作Ohm
μF 读作 micro Farad(如果没记错)
页:
[1]