第27560题 单选题
下列关于Python模块导入的代码语法,正确的是哪一项?

以下四段代码均尝试导入并使用Python标准库模块,其中语法正确且能正常运行的是?

A

import random as rd; print(random.randint(1, 1))

B

from math import pi; print(pi * 2)

C

import json; print(json.dumps({"name": "张三"}, ensure_ascii=False)) as res

D

from os import *; print(path.abspath("."))

程序运行统计
暂无判题统计
提交0次 正确率0.00%
答案解析