I am new to python, is there a way to append string in python as value.
For example:
b0 = str("123")
b1 = str("234")
b2 = str("345")
Easy for now. But in my special case, I have to doing somethings like this.
a = []
for i in range (0,3):
z = str("b") + str("i")
a.append(z)
My plan is when I print(a), it should somethings like ['123', '234', '345']. In fact, it doing like this['b0', 'b1', 'b2'].
So, how can I fix this.