2021-05-05 10:13:49 -07:00
|
|
|
|
---
|
|
|
|
|
id: 5e6a54ba58d3af90110a60a2
|
2021-06-23 21:35:24 +05:30
|
|
|
|
title: '導言:Python 這門編程語言'
|
2021-05-05 10:13:49 -07:00
|
|
|
|
challengeType: 11
|
|
|
|
|
videoId: 0QeGbZNS_bY
|
|
|
|
|
dashedName: introduction-python-as-a-language
|
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
# --question--
|
|
|
|
|
|
|
|
|
|
## --text--
|
|
|
|
|
|
2021-06-23 21:35:24 +05:30
|
|
|
|
運行這兩行代碼後打印出什麼樣的內容:
|
2021-05-05 10:13:49 -07:00
|
|
|
|
|
|
|
|
|
```python
|
|
|
|
|
x = 6
|
|
|
|
|
print(x)
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## --answers--
|
|
|
|
|
|
|
|
|
|
x
|
|
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
x = 6
|
|
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
(x)
|
|
|
|
|
|
|
|
|
|
## --video-solution--
|
|
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|