Agile育成ブログ
未来を変える喜びを
Python

モジュール


Warning: count(): Parameter must be an array or an object that implements Countable in /home/xs638785/agile-software.site/public_html/wp-content/plugins/rich-table-of-content/functions.php on line 490

モジュールのインポート

モジュール名説明
datetime日時を扱う
jsonWebでよく用いられるJSON形式のデータを扱う
math三角関数など数値計算用の関数がまとめられている
pathlibファイルやフォルダの操作を行う
random乱数を生成する
tkinterGUIアプリケーションを作る

calender

calenderというモジュールを読み込んでmonthという関数を実行するとカレンダーが表示される。

import calender
print (calender.month (2017,12))

datetime

timedelta

経過日数や経過時間を表す

timedelta( days=日数,seconds=秒数)

from datetime import date,timedelta
youbi="月火水木金土日"
start=date(2018,6,18)
for d in range(14):
    cur=start+timedelta(days=d)
    wd=cur.weekday()           #変数curの曜日を調べて変数wdにいれる
    print(cur+youbi[wd])

json

JSONとは「JavaScript Object Notation」の略で、「JavaScriptのオブジェクトの書き方を元にしたデータ定義方法」のことです。
JavaScriptなどのクライアント言語とPythonなどのサーバサイド言語間のデータのやり取りで使われることが多いです。

You cannot copy content of this page