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 1 year has passed since last update.

Python全く分からん自分のアウトプット その2

Last updated at Posted at 2023-02-20

2日目:引き続きProgateのPythonコース2を進めていく。複数データ管理や繰り返し処理のプログラミング必須知識らしい。

◎以下調べたこと、疑問に思ったこととかのメモ◎

リスト・・・[要素1,要素2,要素3]←『,(カンマ)』で区切る。これで複数の文字列や複数の数値を一つのものとして管理できる。文字列は『””』を忘れずにつける。数値は数字のみ。

リストを変数に代入・・・変数名=[要素1,要素2,要素3]、リストの変数名は基本的に複数形。

インデックス番号・・・要素には数字が割り振られている。「0」から始まる。

リストの要素更新・・・「リスト[インデックス番号] = 値」でリストの指定したインデックス番号が更新される。

リスト.append(値)・・・リストに新しく要素を追加できる。

ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー

今日は一旦ここまでとする。思ったよりスムーズに解けた気がするけど集中力が切れた。
20分集中して10分休憩を繰り返して集中し続ける勉強法があるだとか、明日試してみる。

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?