mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-24 19:31:26 -07:00
7 lines
197 B
Python
7 lines
197 B
Python
def isprintable(instring):
|
|
#http://stackoverflow.com/a/3637294
|
|
import string
|
|
printset = set(string.printable)
|
|
isprintable = set(instring).issubset(printset)
|
|
return isprintable
|
|
|