Intermediate Python for Developers
Jasmin Ludolf
Senior Data Science Content Developer

"Hello" + 5

float("Hello")

float("2")




pip install <package> 會將原始碼下載到本機環境pd.read_csv() 會在背後執行該自訂函式所寫的程式碼# 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