题目内容

( )是Python官方的扩展索引库,所有人都可以下载第三方库或上传自己开发的库到其中。

A. PyPI
B. PyPy
C. Pydev
D. pip

查看答案
更多问题

( )是最常用的Python版本,也称之为Classic Python。

A. Cpython
B. Jython
C. IronPython
D. PyPy

____ is equivalent to (*ptS).id.

A. *ptS.id
B. ptS@id
C. ptS>id
D. ptS->id

Each member of a structure variable is accessed by giving both the structure name and individual data item name, separated by a ____.

A. @
B. ->
C. :
D. .

____ is NOT a variable declaration statement.

A. struct {int month; int day; int year;} birth;
B. struct {int month; int day; int year;} birth, current;
C. struct Date {int month; int day; int year;};
D. struct Date {int month; int day; int year;} birth;

答案查题题库