5
4

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.

初めてのPython

Posted at

今日からPythonを始めました。
プログラムに関する知識もあまりありません。
今日勉強したコードについてまとめていこうと思います。

文字列型
split(",") : 自分自身を特定の文字列 (,) で区切る。
index(",") : 引数で指定した文字 (,) が、最初に出てくるのが何文字目かわかる。

datetimeモジュール
date,time,datetime型のモジュールを読み込むためには、importで読み込む必要がある。これはどのモジュールにも共通している。

date型
今日:kyou = datetime.date.today()
曜日を調べる:kyou.weekday()

datetime型
今:datetime.datetime.now()

リスト型
list[-1]:最後の要素にアクセス 
append:リストの最後に要素を追加。
insert(a,b):添字aの場所にbを挿入。
pop(a):添字aの要素を削除。
remove(a):要素aを指定して削除。
extend(list):listの要素をすべて追加。
list[0:3]:0番目から始まって3番目の1つ手前までの要素を取り出す。
sort():小さい順に並び替え。文字の場合はアルファベット順(大文字が前に来る)
reverse():順序をさかさまにする。

辞書型
キー(key)と値(value)をペアで保存し、キーを使って値を呼び出す。
形式は、country_code={1:"America",39:"Italia",86:"China"}
数字がキーで、国が値。
country_code[39]でItaliaが取り出せる。

ありがとうございました!

5
4
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
5
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?