Use pandas to simplify

72 divide 12+ 26-8x3

To simplify the expression 72 ÷ 12 + 26 - 8 × 3 using pandas, we can create a DataFrame with the given values and perform the calculations using the built-in operators. Here's the code to achieve this:

```python
import pandas as pd

# Create a DataFrame with the given values
df = pd.DataFrame({'Value': [72, 12, 26, 8, 3]})

# Perform calculations
result = df['Value'][0] / df['Value'][1] + df['Value'][2] - df['Value'][3] * df['Value'][4]

# Print the simplification result
print(result)
```

The output will be the simplified value of the expression: 46.0