# Get user input for weights
weight1 = float(input("Enter weight 1: "))
weight2 = float(input("Enter weight 2: "))
weight3 = float(input("Enter weight 3: "))
weight4 = float(input("Enter weight 4: "))
# Store weights in a list
weights = [weight1, weight2, weight3, weight4]
# Output list
print(f"Weights: {weights}")
```