raw_input() を用いて標準入力から値を取得できます。C++のcinやRubyのgetsのようなものです。
sample.py
#!/usr/bin/python # -*- coding: utf-8 -*- val = raw_input('Enter text: ') print val print val.isdigit()
出力例
$ python sample.py Enter text: test test False