Hamster
Search
Open menu
熟悉 Python
1. Python 建議縮排多少個空格?
A.
3
B.
6
C.
4
D.
2
2. Python 中,開啟文件並覆蓋寫入,應使用以下哪種模式?
A.
open("file.txt", "p")
B.
open("file.txt", "w")
C.
open("file.txt", "a")
D.
open("file.txt", "r")
3. Python 建議縮排使用空格還是 Tab?
A.
兩者皆可以,可混合使用
B.
Tab
C.
空格
D.
兩者皆可以,不混合使用就行
4. 以下哪一個對於 Python 的 List 描述錯誤?
A.
List 第一格 Index 是 1
B.
List 第一格 Index 是 0
C.
List 第三格 Index 是 2
D.
List 最後一格 Index 是 -1
5. Python 中,開啟文件並閱讀,應使用以下哪種模式?
A.
open("file.txt", "p")
B.
open("file.txt", "w")
C.
open("file.txt", "a")
D.
open("file.txt", "r")
6. 以下哪一個是 python 註解寫法
A.
#
B.
%
C.
//
D.
/*
7. Python 中,使用 open 開啟的文件 file_obj,完成操作後是否需要關閉 file_obj.close()?
A.
需要
B.
不需要
C.
需要,除非使用 `with` 自動關閉。
D.
不需要,除非使用 `with` 自動關閉。
8. Python 定義函數的關鍵字是?
A.
define
B.
function
C.
def
D.
func
9. Python 檔案一般以什麼 extension 結尾?
A.
.p
B.
.python
C.
.py
D.
.pyt
10. Python 中,開啟文件並繼續寫入,應使用以下哪種模式?
A.
open("file.txt", "p")
B.
open("file.txt", "r")
C.
open("file.txt", "a")
D.
open("file.txt", "w")