当前位置:考试网  > 试卷库  > 计算机类  > 等级考试  > 计算机二级  > Python语言程序设计  >  执行以下程序,输入 ”93python22”,输出结果是: w = input( ‘请输入数字和字母构成的字符串: ’) for x in w: if '0'<= x <= '9': continue else: w.replace(x,'')
试题预览

执行以下程序,输入 ”93python22”,输出结果是:

w = input( ‘请输入数字和字母构成的字符串: ’)

for x in w:

if '0'<= x <= '9':

continue

else:

w.replace(x,'')

更新时间:2024-11-24 17:29:55
A、python9322
B、python
C、93python22
D、9322
收藏
纠错
正确答案:

C

答案解析:

暂无解析

你可能感兴趣的试题

软件开发离不开系统环境资源的支持,其中必要的测试数据属于

以下程序的输出结果是:

img1 = [12,34,56,78]

img2 = [1,2,3,4,5]

def displ():

print(img1)

def modi():

img1 = img2

modi()

displ()

下列有关数据库的描述,正确的是

设 str = 'python' ,想把字符串的第一个字母大写,其他字母还是小写,正确 的选项是:

表达式divmod(20,3)的结果是: