Symphilosophein 狂者進取,狷者有所不為也。
>>> def spam(s): ... for attr in 'isnumeric', 'isdecimal', 'isdigit': ... print(attr, getattr(s, attr)()) ... >>> spam('½') isnumeric True isdecimal False isdigit False >>> spam('³') isnumeric True isdecimal False isdigit True
Note: Only a member of this blog may post a comment.
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.