Introduction to Python for Developers
Jasmin Ludolf
Senior Data Science Content Developer


$$
"Hello, world!"
"20-minute pasta recipe"
"Chef's secret seasoning"
'Chef's secret seasoning'
$$
ingredient_name
$$
$$
ingredient_name =
$$
ingredient_name = "Tomatoes"
$$
ingredient_quantity = 2
print(ingredient_name)
Tomatoes
print(ingredient_quantity)
2
print(ingredient_quantity)
2
$$
ingredient_quantity = 1print(ingredient_quantity)
1
Introduction to Python for Developers