LoginSignup
0

More than 5 years have passed since last update.

[1day1lang AdventCalender] day4 Python

Posted at

環境構築

インストール確認

$ python --version
Python 2.7.12

すでにインストールされている模様

コマンドラインで Hello World

$ python
>>> print("Hello World!")
Hello World!
>>> exit()

ファイルから Hello World

helloworld.py
print("Hello World!")
$ python helloworld.py
Hello World!

ツリー描画プログラミング

…時間が足りないのでまた明日追記

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
0