icon

5時間寝た

icon

@AWS おはありなすび~

icon

アストラムライン astramline.co.jp/
> 雪の影響により、最大18分程度の遅れが生じております。

バスイット(広島山口バス遅延情報サイト) twitter.com/busit_PR/status/13
> 現在、BUSitへのアクセスが集中し、つながりにくい状況になっております。

祭りだ

Web site image
アストラムライン 広島高速交通株式会社
icon

import numpy as np
x = np.arange(10)
x[:3] -= 5 # できる
x[x > 5] -= 5 # できる
x[x > 5][:3] -= 5 # できない (xが書き換わらない)

# ???