グローバル変数とローカル変数で同じ名前の変数を使うことができる。
例
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 …
plot.subplots() でグラフの縦方向と横方向の数を指定する。 例 import numpy as np from matplotlib import pyplot as plt x1 = …
ヒストグラムを描くには、data_hist を使う。 ヒストグラムの縦棒の数は bins で指定する。 例 from matplotlib import pyplot as plt data_hist …
python3 で、pathlib を使ってファイルの拡張子を取得する方法
pathlib モジュールの stem を使う。 この書き方は、python 3.4 以降で使えるようになった。 https://docs.python.org/3/library/pathlib.h …
2023/01/18
matplotlib のグラフ作成と gnuplot との対応 比較
2022/10/14
pythonで配列(リスト)の、ある要素がわかっているときにその次の要素を取得する方法。