Skip to content

Instantly share code, notes, and snippets.

View inoccu's full-sized avatar

Kenichi Inoue inoccu

View GitHub Profile

Pythonの基本構文

for i in range(1, 101):
    if i % 3 == 0 and i % 5 == 0:
        print('Fizz Buzz!')
    elif i % 3 == 0:
        print('Fizz!')
    elif i % 5 == 0:
        print('Buzz!')
    else:

Colaboratoryの基礎

Notebookの基礎

import this

requestsパッケージのインストール

!pip install requests

Pythonによるデータ分析・機械学習プログラミングとAIのローコード開発

1.データ分析のためのPythonプログラミング

Pythonの基本構文(1)

for i in range(1, 101):
    if i % 3 == 0 and i % 5 == 0:
        print('Fizz Buzz!')
    elif i % 3 == 0: