登录
注册
首页
->
Python期末
下载题库
______(可以、不可以)使用del命令来删除元组中的部分元素。
答:(不可以)
继续答题:
下一题
更多Python期末试题
1
str()函数的作用是将数字类型的数据转换为字符串类型
2
加法运算符可以用来连接字符串并生成新字符串
3
在Python中,遍历字典中的所有键,可以使用:
4
将数组arr中所有的奇数置为-1对应的语句是______。
5
补充实现将数组a = np.arange(10).reshape(2,-1)和数组b = np.repeat(1, 10).reshape(2,-1)水平堆叠的代码。 a = np.arange(10).reshape(2,-1) b = np.repeat(1, 10).reshape(2,-1) array=___