37 lines
338 B
Markdown
37 lines
338 B
Markdown
---
|
|
id: 5e6a54c358d3af90110a60a3
|
|
title: 'Introduzione: elementi di Python'
|
|
challengeType: 11
|
|
videoId: aRY_xjL35v0
|
|
dashedName: introduction-elements-of-python
|
|
---
|
|
|
|
# --question--
|
|
|
|
## --text--
|
|
|
|
Cosa scriverà il seguente programma?
|
|
|
|
```python
|
|
x = 43
|
|
x = x + 1
|
|
print(x)
|
|
```
|
|
|
|
## --answers--
|
|
|
|
x
|
|
|
|
---
|
|
|
|
x + 1
|
|
|
|
---
|
|
|
|
44
|
|
|
|
## --video-solution--
|
|
|
|
3
|
|
|