s = ['12','22','23','31','123','224']
res =s[0]
for i in range(1,len(s)):
if s[i] >= res:
res =s[i]
print(res)
執(zhí)行上述程序后,輸出的結(jié)果是( )
s,n=0,8
while True:
s+=n
if s>14:
break
n-=2
print(n,s)
執(zhí)行程序后,輸出結(jié)果可能是( )
n = int(input())
a,b,num = 2,1,2
for i in range(n-1):
print(num)
方框中的代碼由以下三部分組成:①num += a / b ②a = a + b ③b = a - b代碼順序正確的選項是( )
程序代碼如下:
from PIL import Image
import numpy as np
import matplotlib.pyplot as plt
img=np.array(Image.open("chenchen.jpg").convert("L"))
rows,cols=img.shape
for i in range(rows):
for j in range(cols):
if():
img[i,j]=1
else:
img[i,j]=0
plt.imshow(img,cmap="gray")
plt.show()
下列說法正確的是( )
a=[21,3,4,5,9,14,23]
c,m=0,0
for i in range(2,len(a)):
if a[i-2]+a[i-1]==a[i]:
c+=1
if c>m:
m=c
else:
c=0
print(m)
執(zhí)行程序后,輸出結(jié)果是( )
Ⅰ.設定小寫字母a—z對應的數(shù)字為1—26,大寫字母A—Z對應的數(shù)字為27—52。
Ⅱ.將某個單詞的所有字母按照其對應的數(shù)字求和,
Ⅲ.若和為素數(shù)(質(zhì)數(shù))則判斷為素單詞,否則不是。
如單詞“Hello”,字母分別對應的數(shù)字為:34、5、12、12、15,其和為34+5+12+12+15=78,不是素數(shù),因此單詞“Hello”不是素單詞。
def is_Prime(number):#判斷number是否為素數(shù)
flag=True
for k in range(2,number):
if :
flag=False
break
return flag
s=input("請輸入一個單詞:")
total=0
for i in range(len(s)):
ch=s[i]
if "A"<=ch<="Z":
total=
elif "a"<=ch<="z":
#將小寫字母轉(zhuǎn)換為對應的數(shù)字并累加至變量total中,代碼略
if :
print(s,"是素單詞")
else:
print(s,"不是素單詞")
n=int(input("請輸入要查找的自冪數(shù)位數(shù):"))
count=total=0
for i in range(1*10**(n-1),1*10**n):
a=i
while a>0:
total+=
a=a//10
if i==total:
count+=1
print(i)
print(str(n)+"位自冪數(shù)一共有"++"個")
圖 a | 圖 b |
請回答下列問題:
f=open("dc.txt",encoding="utf-8")
line=f.readline()
pro,pub=0,0
# 讀取第一行,保存在字符串 line 中
while line: # 當 line 非空
x=
t=int(line[3:])
if x=="A":
pro+=t
line=f.readline() # 繼續(xù)讀取一行
score=int(pro/5*0.6+pub/5*0.4)
grade=
print("推薦度為:","★"*grade)