ブックマーク / docs.python.org (2)

  • 5. Data Structures

    5. Data Structures¶ This chapter describes some things you’ve learned about already in more detail, and adds some new things as well. 5.1. More on Lists¶ The list data type has some more methods. Here are all of the methods of list objects: list.append(x) Add an item to the end of the list. Similar to a[len(a):] = [x]. list.extend(iterable) Extend the list by appending all the items from the itera

    5. Data Structures
    sawara0727
    sawara0727 2017/11/05
    “5.1.2. リストをキューとして使う(原文) リストをキュー (queue) として使うことも可能です。この場合、最初に追加した要素を最初に取り出します ("first-in, first-out")。しかし、リストでは効率的にこの目的を達成することが
  • 8.1. datetime — 基本的な日付型および時間型 — Python 3.6.5 ドキュメント

    datetime — Basic date and time types¶ Source code: Lib/datetime.py The datetime module supplies classes for manipulating dates and times. While date and time arithmetic is supported, the focus of the implementation is on efficient attribute extraction for output formatting and manipulation. See also Module calendarGeneral calendar related functions. Module timeTime access and conversions. Module z

    8.1. datetime — 基本的な日付型および時間型 — Python 3.6.5 ドキュメント
    sawara0727
    sawara0727 2017/06/01
    pythonのdatetimeモジュールについて。文字列⇔datetime形式に変換する方法。
  • 1