2020-04-06 14:49:56 -04:00
|
|
|
---
|
|
|
|
id: 5e6a54c358d3af90110a60a3
|
2020-04-21 23:37:02 -05:00
|
|
|
title: 'Introduction: Elements of Python'
|
2020-04-06 14:49:56 -04:00
|
|
|
challengeType: 11
|
|
|
|
videoId: aRY_xjL35v0
|
2021-01-13 03:31:00 +01:00
|
|
|
dashedName: introduction-elements-of-python
|
2020-04-06 14:49:56 -04:00
|
|
|
---
|
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
# --question--
|
|
|
|
|
|
|
|
## --text--
|
|
|
|
|
|
|
|
What will the following program print out:
|
|
|
|
|
|
|
|
```python
|
|
|
|
x = 43
|
|
|
|
x = x + 1
|
|
|
|
print(x)
|
2020-04-06 14:49:56 -04:00
|
|
|
```
|
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
## --answers--
|
|
|
|
|
|
|
|
x
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
x + 1
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
|
## --video-solution--
|
|
|
|
|
|
|
|
3
|
|
|
|
|