s=input()
t=0
mw=''
for i in range(len(s)):
ch=s[i]
if '0'<=ch<='9':
t=t*10+int(ch)
elif ch=='-':
mw+=chr(t%26+ord('A'))
t=0
else:
mw+=ch
print(mw)
執(zhí)行該程序段輸入“29-052-24!”(不包括雙引號),則輸出的結(jié)果是( )
while True:
t=pin0.read_analog()
if t>40:
display.show(Image.HAPPY)#在 LED 屏上點陣顯示笑臉的圖形
sleep(2000)
else:
display.show(Image.SAD)#在 LED 屏上點陣顯示哭臉的圖形
sleep(1000)
將代碼燒錄至某智能終端后運行,下列關(guān)于代碼執(zhí)行效果描述不正確的是( )
下列關(guān)于該計算機的說法,正確的是( )
def p(x):
for i in range(2,x):
if x%i==0:
return False
return True
執(zhí)行語句 print(p(5),p(6))后,輸出的結(jié)果為( )
圖 a | 圖 b |
請回答下列問題:
f=open(" ",encoding="utf-8")
line=f.readline() #讀取第一行,保存在字符串 line 中
pro,pub=0,0
while line:#當(dāng) line 非空
x=
t=int(line[3:])
if x=="A":
pro+=t
elif x=="B":
line=f.readline() # 繼續(xù)讀取一行
score=int(pro/5*0.6+pub/5*0.4)
grade=
print("推薦度為:","★"*grade)
請回答下列問題:
圖 a
序號 | 路由 | 功能 |
1 | / | 訪問系統(tǒng)首頁 |
2 | /readhreadt | 查看歷史溫濕度數(shù)據(jù) |
3 | / | 查看實時溫濕度數(shù)據(jù) |
圖 b | 圖 c |
import pandas as pd
import matplotlib.pyplot as plt
df=pd.read_excel("data.xlsx") #讀取文件 data.xlsx 中的數(shù)據(jù)
for i in range(len(df)) :
if i%2==0 and df.at[i,"監(jiān)測值"]>30:
df.at[i,"狀態(tài)"]=1
if i%2==1 and df.at[i,"監(jiān)測值"]<50:
df.at[i,"狀態(tài)"]=1
dfg=df.groupby("時間" , as_index=False).狀態(tài).sum()
time=[] ; data=[]
for t in range (24):
s=str(t); c=0
if t<10:
s='0'+s
time.append(s)
dft= dfg[]
for j in dft.index:
if dft.at[j,"時間"][:2]==s:
data.append(c)
plt.plot(time, data)
#設(shè)置繪圖參數(shù),顯示如圖 c 所示線形圖,代碼略
m = int(input("請輸入內(nèi)存容量:"))
s = input("請輸入英語句子:")
dic = {}
head = tail = 0
word = ""
for ch in s:
if ch == " " or ch == "," or ch == ".":
if word not in dic or dic[word] < head:
if tail - head == m:
dic[word] = tail
tail + = 1
word = ""
else:
if :
ch = chr(ord(ch) + 32)
word += ch
print("需要去外存查找",,"次詞典")