19日に更新してた

アフィリエイトはないよ

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

python の class と dataclass でリストを設定する

python の class と dataclass でリストの処理を試してみました。class import math sin=[round( math.sin(i*(math.pi/4) ), 1) for i in range(20)] class D(): def __init__(self,width,data): self.data1=[i for i in data] self.width=width def data1(s…

windows の anaconda 仮想環境で jupyter notebook を起動するバッチファイル

とりあえず、ワンクリックでできるようにしてみました。仮想環境名はpy37です。 @echo off setlocal set a=C:\Users\%username% set b=\anaconda3\Scripts\activate.bat call %a%%b% cd /D %a% call activate py37 call jupyter-notebook endlocal 適当に名…