Intermediate Python for Developers
George Boorman
Curriculum Manager, DataCamp
"Hello" + 5
float("Hello")
float("2")
pip install <package>
downloads source code to our local environmentpd.read_csv()
function executes the code written for that custom function behind the scenes# Import pandas package
import pandas as pd
# Create pandas DataFrame
products = pd.DataFrame({"ID": "ABC1",
"price": 29.99})
# Try to access the non-existent "tag" column
products["tag"]
Intermediate Python for Developers