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

print("Hello!")

Python script: file with python code we run
Development practices:

Learn about:

$$
print()
  $$
print("Hello, world!")
Hello, world!
print('Hello, world!')
Hello, world!
  Comments explain code
Start with # symbol
Appear in different color
Do not affect code
# This is a code comment
# The below is a print function
print("Hello, world!")
  Introduction to Python for Developers