LoginSignup
1
1

More than 3 years have passed since last update.

Python 備忘録(個人的ブックマーク)

Last updated at Posted at 2020-05-27

多分、ゴミ投稿… :sweat: 逐次、更新。

覚書

商と余り

q = 10 // 3    # 商
mod = 10 % 3   # 余り
q, mod = divmod(10, 3)    # 商と余りを同時に

swap

a, b = b, a

もう tmp 要らない…。

ユークリッドの互除法 Python 版

def gcd(a, n):
    if n == 0:
        return  a
    else:
        return gcd(n, a % n)

つか、標準ライブラリ等がありますね。

Windows でのトラブル

Python をインストールせずにショートカットを無効にするには、[スタート] から Manage app execution aliases を開き、"App Installer" (アプリ インストーラー) Python エントリを見つけて "オフ" に切り替えます。

Python 公式等

Anaconda 関連

Python 仮想環境

科学技術計算・統計

公式

日本語での解説

GIS

機械学習

形態素解析

Web フレームワーク

番外編

データベース接続

可視化

画像処理

OCR

Excel 操作

Game

その他

1
1
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
1
1