Python でグローバル配列を定義する方法 tm と prs をグローバル配列として定義し、それらを 2 つの関数で使用したいのですが、どうすれば定義できますか?
import numpy as np
import matplotlib.pyplot as plt
tm = []
prs = []
def drw_prs_tm(msg):
tm = np.append(tm,t)
prs = np.append(prs,s)
def print_end(msg):
plt.plot(tm,prs,'k-')