comment

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です

関連記事

no image

matplotlib でエラーバーを設定する方法

pyplot.errorbar を使って設定する。 オプションの詳細は https://matplotlib.org/stable/api/_as_gen/matplotlib.pyplot.erro …

no image

〜に向いている を英語で言う方法

〜に向いている lend itself to … (何かに)向いている、適している または be suitable for … という言い方がある。

no image

matplotlib で目盛りに文字を使用する方法

文字に tex の記法を使って数式を入力することもできる。 例 import numpy as np from matplotlib import pyplot as plt x = np.linsp …

no image

vi, vim で行番号を指定して移動する方法

「行番号の数字を入力」→「G」(=shift+g)キーを押す で移動できる。 詳細:https://vim.jp.net/stepuptonovice_movecursor_linenumber.ht …

no image

python3 で、リストを pop したものの返り値

リストを pop すると、 pop された値が返される。 例 plant_1 = [’pumpkin’, ‘ginger’, ‘potato’] plant_2 = [] print( …