Skip to content

Instantly share code, notes, and snippets.

@yuifu
Last active July 4, 2018 06:56
Show Gist options
  • Save yuifu/dadaf5232510923791b13a66c1d08df2 to your computer and use it in GitHub Desktop.
Save yuifu/dadaf5232510923791b13a66c1d08df2 to your computer and use it in GitHub Desktop.

この文章の目的

たまにしかpythonを使わない人のためのメモ

数値

  • int()で文字列を整数にできる

文字列

  • + で結合できる
  • str() で数値を文字列にできる
  • シングルクォーテーションとダブルクォーテーションが同じ意味

条件分岐

  • if のあとはコロン
  • elif のあともコロン
  • 真偽値型の結合は andor
  • not: if not z == 77:

入出力

  • input() でコンソールからの入力を受け取れる

リスト

  • [1, 2, 4]
  • index は 0-origin
  • list1.append(4)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment