0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

[1day1lang AdventCalender] day4 Python

0
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!

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

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

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?