Introduktion till Python för utvecklare
Jasmin Ludolf
Senior Data Science Content Developer
$$
$$
$$
$$

print("Hello!")

Python-skript: fil med Python-kod som vi kör
Utvecklingsmetoder:

Du lär dig:

$$
print()
$$
print("Hello, world!")
Hello, world!
print('Hello, world!')
Hello, world!
Kommentarer förklarar koden
Börjar med tecknet #
Visas i en annan färg
Påverkar inte koden
# This is a code comment
# The below is a print function
print("Hello, world!")
Introduktion till Python för utvecklare