牌語備忘録 -pygo

あくまでもメモです。なるべくオフィシャルの情報を参照してください。

牌語備忘録 -pygo

2021-05-01から1ヶ月間の記事一覧

Emacs の web-mode から my-web-vue-mode 見たいのを生やして Vue の場合は Flycheck に javascript-eslint を設定できるようにしてみるメモ

その1: とりあえず javascript-eslint 使えればいいパターン その2:lsp-mode にvls の追加方法がよくわからないので eglot を利用してみるパターン(追記1) その3: やっぱり lsp-mode (追記2) 感想 参考リンク web-mode で html は html-tidy でチェック…

Pythonで小3算数の1桁の割り算の問題を生成するメモ

import random for _ in range(10): x = random.sample(range(2, 10), 1)[0] y = x * random.sample(range(2, 10), 1)[0] print(f'{y}/{x}= {y//x}') 出力例 12/3= 4 4/2= 2 30/5= 6 21/3= 7 12/2= 6 18/2= 9 81/9= 9 24/8= 3 15/5= 3 32/4= 8