下列程序的输出结果为____________ s1="ABCDEFGHIJ" s2="0123456789" d=dict(zip(s2,s1)) text="9876" wtext=[d.get(ch) if ch in d else ch for ch in text] for ch in wtext: print(ch,end=" ")
主观题
下列程序的输出结果为____________ s1="ABCDEFGHIJ" s2="0123456789" d=dict(zip(s2,s1)) text="9876" wtext=[d.get(ch) if ch in d else ch for ch in text] for ch in wtext: print(ch,end=" ")