Answer:
In Python:
btcdec1 = []
btcdec1 = [11234, 12475]
print(btcdec1)
Step-by-step explanation:
First, create an empty list named btcdec1
btcdec1 = []
Next, insert the two data (11234 and 12475) into the list
btcdec1 = [11234, 12475]
Lastly, print the list
print(btcdec1)