Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Lære The Very First Steps in Python | First Acquaintance with Python
Introduction to Python
Seksjon 1. Kapittel 1
single

single

The Very First Steps in Python

Sveip for å vise menyen

Note
Definition

Python is a high-level programming language. High-level languages use abstract syntax that is easy for humans to understand but cannot be directly interpreted by machines.

Programming is the process of giving instructions to a computer to perform tasks, and Python is a popular language known for its simplicity and versatility. Let’s explore what makes Python unique.

Let's get started by printing your first message in Python! To do this, use the print() function. When printing specific text, wrap it in quotation marks, either "..." or '...'.

1
print("Some message")

You can also add more text by using a comma to separate different parts within the print() function. The function automatically adds a space between the arguments. Try experimenting with different messages to see how it works.

Oppgave

Sveip for å begynne å kode

Print "Hello world!" in the console using the print statement.

  • Use the print statement.
  • Print "Hello world!" in the console.

Løsning

Switch to desktopBytt til skrivebordet for virkelighetspraksisFortsett der du er med et av alternativene nedenfor
Alt var klart?

Hvordan kan vi forbedre det?

Takk for tilbakemeldingene dine!

Seksjon 1. Kapittel 1
single

single

Spør AI

expand

Spør AI

ChatGPT

Spør om hva du vil, eller prøv ett av de foreslåtte spørsmålene for å starte chatten vår

some-alt