登录
注册
首页
->
Python练习题
下载题库
Python 语句 s=‘abcdefg',则s[::-1]的值是________________ 。
答:gfedcba
继续答题:
下一题
更多Python练习题试题
1
list1=[1,2,3,4],执行list1.reverse()后,list1的值为()
2
使用扩展库pandas的函数read_excel()读取Excel文件时,可以使用参数thousands指定把什么符合作为千分符。( )
3
已知函数定义def demo(x, y):return x+y,那么表达式demo(3,5)的值为______________________。
4
下面代码的输出结果是( ) list1 = [i*2 for i in Python] print(list1)
5
下面代码的输出结果是( )。x = 12.34 ; print(type(x))