Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はPythonが初めてで、変数と配列の動的な名前の機能を実装しようとしています。たとえば、このような名前の異なる10個の配列が必要です Array=[0 for i in range(10)]
Array=[0 for i in range(10)]
以前の投稿に同意しますが、それは良い考えではありません。それでも、ここにそれを行う方法があります
N = 3 code = ','.join(["Array"+str(n) for n in range(N)]) + " = " + ','.join(["[]" for n in range(N)]) exec code