グローバル変数とローカル変数で同じ名前の変数を使うことができる。
例
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
関連記事
pyplot.errorbar を使って設定する。 オプションの詳細は https://matplotlib.org/stable/api/_as_gen/matplotlib.pyplot.erro …
annotate を使う。 例 import numpy as np from matplotlib import pyplot as plt x = np.linspace(-10,10,100) …
axhline, axvline を使ってx,y軸に平行な線を描くことができる。 https://matplotlib.org/stable/api/_as_gen/matplotlib.pyplot …
2023/01/18
matplotlib のグラフ作成と gnuplot との対応 比較
2022/10/14
pythonで配列(リスト)の、ある要素がわかっているときにその次の要素を取得する方法。