Show-Negative-Values-Red
Sun 29 June 2025
import pandas as pd
data = {
'Month' : [1, 2, 3],
'Temp' : [7, -18, -20]
}
data
{'Month': [1, 2, 3], 'Temp': [7, -18, -20]}
type(data)
dict
df = pd.DataFrame(data)
df
| Month | Temp … |
|---|
Category: basics
Read More