相关题目
单选题
在Python中,令cars=['bmw','audi','toyota','subaru']
运行cars.sort(reverse=True)后,cars的值为();运行sorted(cars,reverse=True)后,cars的值为()
单选题
在Python中,函数( )。
单选题
在python中,x=[11,8,7,2,3],x.insert(4,[4,5]),列表x的值为()。
单选题
在Python中,import date time,假设
a=datetime.date(2017,3,22),则()语句可以把日期a加3天(即输出结果为:2017-03-25)
单选题
在Python中,import date time,假设
a=datetime.date(2017,3,22),则()语句可以把a转为字符串(即输出结果为:'2017-03-22')
单选题
在Python文件操作中,使用关键字( )可以在文件访问后自动将其关闭。
单选题
在Python程序中,已知x=2,y=1,当执行语句y+=x*2,y的值是( )
单选题
在Python编程中,字符转换成字节的方法是
单选题
在python编程中,语句dic3 = {[1,2,3]:'uestc'} 不能创建一个字典
单选题
在python编程中,已知x=43,ch=‘A’,y = 1,则表达式(x>=y and ch<‘b’ and y)的值是0
