Files
freeCodeCamp/curriculum/challenges/german/07-scientific-computing-with-python/python-for-everybody/introduction-python-as-a-language.md
2022-08-19 20:53:29 +02:00

44 lines
433 B
Markdown

---
id: 5e6a54ba58d3af90110a60a2
title: 'Einführung: Python als Sprache'
challengeType: 11
videoId: 0QeGbZNS_bY
bilibiliIds:
aid: 674404602
bvid: BV1GU4y1H7vB
cid: 376315625
dashedName: introduction-python-as-a-language
---
# --question--
## --text--
Was wird nach dem Ausführen dieser beiden Codezeilen ausgegeben:
```python
x = 6
print(x)
```
## --answers--
x
---
6
---
x = 6
---
(x)
## --video-solution--
2