2021-06-15 00:49:18 -07:00
|
|
|
---
|
|
|
|
id: 5e7b9f080b6c005b0e76f064
|
2021-07-19 22:22:21 +05:30
|
|
|
title: Liste in Python
|
2021-06-15 00:49:18 -07:00
|
|
|
challengeType: 11
|
|
|
|
videoId: Y0cvfDpYC_c
|
2021-10-03 12:24:27 -07:00
|
|
|
bilibiliIds:
|
|
|
|
aid: 249460305
|
|
|
|
bvid: BV1Dv411E7Uj
|
|
|
|
cid: 376532993
|
2021-06-15 00:49:18 -07:00
|
|
|
dashedName: python-lists
|
|
|
|
---
|
|
|
|
|
|
|
|
# --question--
|
|
|
|
|
|
|
|
## --text--
|
|
|
|
|
2021-07-19 22:22:21 +05:30
|
|
|
Qual è il valore di x dopo aver eseguito questo codice?
|
2021-06-15 00:49:18 -07:00
|
|
|
|
|
|
|
```python
|
|
|
|
fruit = "banana"
|
|
|
|
x = fruit[1]
|
|
|
|
```
|
|
|
|
|
|
|
|
## --answers--
|
|
|
|
|
|
|
|
banana
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
a
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
b
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
True
|
|
|
|
|
|
|
|
## --video-solution--
|
|
|
|
|
|
|
|
2
|
|
|
|
|