Je veux vérifier si le code de communication RS-232C est un caractère de contrôle tel que «
Référence http://python.civic-apps.com/char-ord/
J'ai implémenté ce qui suit.
http://ideone.com/XKsbnY
checkCode.py
def checkCode(code):
if ord(code) < 32:
print "not printable"
if ord(code) >= 32:
print "printable:", code
code = chr(6) # <ACK>
checkCode(code)
code = chr(71) # G
checkCode(code)
résultat
Success time: 0.01 memory: 8968 signal:0
not printable
printable: G
http://stackoverflow.com/questions/3636928/test-if-a-python-string-is-printable Selon lui, il existe également le style d'écriture suivant.
>>> import string
>>> all(c in string.printable for c in hello)
True
Recommended Posts