我是python的新手。无论如何我可以通过+ cusd命令使用python通过手机发送ussd。我可以使用超级终端来做到这一点。我想自动使用python。感谢。
答案 0 :(得分:2)
是。使用pyserial。
>>> import serial
>>> ser = serial.Serial(0) # open first serial port
>>> print ser.portstr # check which port was really used
>>> ser.write("hello") # write a string
>>> ser.close() # close port