グローバル変数とローカル変数で同じ名前の変数を使うことができる。
例
x = 10
def myfunc():
x = 20
print('関数内: x = '+str(x))
myfunc()
print('外側: x = ' + str(x))
結果
関数内: x = 20 外側: x = 10
雑記
投稿日:2020年12月4日 更新日:
グローバル変数とローカル変数で同じ名前の変数を使うことができる。
x = 10
def myfunc():
x = 20
print('関数内: x = '+str(x))
myfunc()
print('外側: x = ' + str(x))
関数内: x = 20 外側: x = 10
執筆者:seyanen
関連記事
axhline, axvline を使ってx,y軸に平行な線を描くことができる。 https://matplotlib.org/stable/api/_as_gen/matplotlib.pyplot …
pythonで配列(リスト)の、ある要素がわかっているときにその次の要素を取得する方法。
next() を使う。 例 my_arr = [‘春’,’夏’,’秋’,’冬’] my_iter = iter(my_arr) print(next(my_iter,’なし’)) print(next …
pyplot.errorbar を使って設定する。 オプションの詳細は https://matplotlib.org/stable/api/_as_gen/matplotlib.pyplot.erro …
「linestyle = 」として、線の種類を指定することができる設定の詳細は、次のリンクを参照。 https://matplotlib.org/stable/gallery/lines_bars_a …
2023/01/18
matplotlib のグラフ作成と gnuplot との対応 比較
2022/10/14
pythonで配列(リスト)の、ある要素がわかっているときにその次の要素を取得する方法。