「python入門」isnumeric()のサンプルコード

サンプルコード
#!/usr/bin/python

str = u"this2009″;
print str.isnumeric();

str = u"23443434″;
print str.isnumeric();
結果
False
True

Python

Posted by arkgame