试题详情

函数如下:def show(s):for n in s:print(n)下面那些在调用函数时会报错( ? ?)

Ashow ([2,4,5])

Bshow (‘abcesf’)

Cshow (3.4)

Dshow ((12,4,5))