基本的に、プログラムで複数の (無制限の) 変数を作成できるようにする必要があります。変数を定義しなくても、コードを介して操作できるようにする必要があります。
a1 などの変数名として文字と数字を使用し、プログラムに数字に 1 を追加するだけで新しい変数を作成させることを考えていました。したがって、 a1からa30程度までが作成されます。どうすればいいですか?
私のプログラムは多項式を追加しようとしており、変数 (または現在のリスト) はさまざまな単項式を分離するものです。多項式に含まれる単項式の数がわからないため、数値を柔軟にする方法が必要だったので、単項式のための正確な量のスペースがあり、余分なものも少なくもありません。
コードは次のとおりです。
# Sample polynomial set to x, the real code will say x = (raw_input("Enter a Polynomial")).
x = '(5xx + 2y + 2xy)+ (4xx - 1xy)'
# Isdigit command set to 't' to make the code easier to write.
t = str.isdigit
# Defining v for later use.
v = 0
# Defining 'b' which will be the index number that the program will look at.
b = 1
# Creating 'r' to parse the input to whatever letter is next.
r = x [b]
# Defining n which will be used later to tell if the character is numeric.
n = 0
# Defining r1 which will hold one of the monomials, ( **will be replaced with a list**)
#This was the variable in question.
r1 = ''
# Setting 'p' to evaluate if R is numeric ( R and T explained above).
p = t(r)
# Setting 'n' to 1 or 0 to replace having to write True or False later.
if p == True:
n = 1
else:
n = 0
# Checking if r is one of the normal letters used in Algebra, and adding it to a variable
if r == 'x':
v = 'x'
c = 1
elif r == 'y':
v = 'y'
c = 1
elif r == 'z':
v = 'z'
c = 1
# If the character is a digit, set c to 0, meaning that the program has not found a letter yet (will be used later in the code).
elif n == 1:
v = r
c = 0
# Adding what the letter has found to a variable (will be replaced with a list).
r1 = r1 + v
b = b + 1
最終的にこれをループにします。
より理解しやすいように、コードにコメントを追加しました。