Close

Uncategorized

Python

#!/usr/bin/env python3 import pandas as pd data = [[‘Alex’, 10], [‘Ronald’, 18], [‘Jane’, 33]] df = pd.DataFrame(data, columns=[‘Name’, ‘Age’]) print(df) ImportError: Missing optional dependency ‘xlrd’. Install xlrd >= 1.0.0 for Excel support Use pip or conda to install xlrd. As an example, if our stock_prices had a second sheet called […]

Read More