试题 试卷
题型:填空题 题类:常考题 难易度:容易
浙教版初中信息技术九年级上学期期末试卷(3)
s="abcdefg"
c=len(s) #len 求字符串长度
for i in range(0,c):
if i<2:
print (chr(ord(s[i])+2),end=" ") # ord()函数是chr()函数配对函数,将字符转ASCII值
else:
print(chr(ord(s[i]) + 3),end=" ")
>>>world="world"
>>>print("hello"+world)
试题篮