第21919题
已知Python代码中变量n = "hi",若运行后输出结果为hi,选择正确的补全代码选项

下列代码中,如果输出结果为hi,横线处应填入对应的代码:

n = "hi"
A

print(hi)

B

input(n)

C

print(n)

D

PRINT(n)