下列程序运行的结果是?( )
print(‘hello’)
print(‘world’)
A: helloworld
B: hello
world
C: hello world
D: ‘hello’‘world’
答案:B
本题考察的 Python 编程基础,print 在打印时,会在打印的末尾默认加上换行符,所以打印出来的内容是两行。
下列哪段代码可以将画笔颜色设置为红色?( )
A: turtle.pen(‘red’)
B: turtle.fillcolor(‘red’)
C: turtle.colormode(‘red’)
D: turtle.pencolor(‘red’)
答案:D
本题考察的 turtle 画笔颜色的设置,画笔的颜色是通过 turtle.pencolor() 来设置的。