LoginSignup
8
8

More than 5 years have passed since last update.

Pythonでキー入力

Last updated at Posted at 2014-05-01

コンソールから文字列を入力するのに使う

#!/usr/bin/env python2.7
#-*- coding: utf-8 -*-

if __name__ == '__main__':

    input_data = raw_input('>>> ')
    print input_data

コンソールから数値を入力するのに使う

#!/usr/bin/env python2.7
#-*- coding: utf-8 -*-

if __name__ == '__main__':

    input_data = input('>>> ')
    print input_data
8
8
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8
8