PYTHON的題求大佬幫忙PYTHON的題求大佬幫忙

2021-03-06 13:33:56 字數 3342 閱讀 5835

1樓:匿名使用者

看你要買什麼手機了,煥熊上面什麼手機都有了,你要買什麼的就自己到官網上去找找

一道python題,求大佬解答一下,跪求。

2樓:一顆程式猿

data = [

['王平', '男', 1, 1, 0, 0],

['李麗', '女', 0, 1, 0, 1],

['陳小梅', '女', 0, 0, 1, 0],

['孫洪濤', '男', 0, 1, 1, 1],

['方亮', '男', 1, 0, 1, 0],

]# 1. 報名超過兩項(含)的學神人數

data1 = [x for x in data if x[2]+x[3]+x[4]+x[5]>=2]

print('報名超過兩項(含)的學神人數: ', len(data1))

# 2. 女生報名情況

data2 = [x for x in data if x[1]=='女']

print(data2)

# 3. 3000m的姓名/性別

data3 = [(x[0], x[1]) for x in data if x[3]==1]

print(data3)

求大佬!請問一道python題目,求助!

3樓:

使用集合,首先分別建立1,2,3科目的集合,使用並集算出人數後用總人數減去求出第一題

第二題,第三題同理

python最基礎的題,求大佬編個**。。渣渣表示一臉蒙蔽

4樓:匿名使用者

大佬來表示100分,寫這麼多,太自累了。

給你寫一bai下第三題du

a=int(input("請輸

入乙個整zhi數dao"))

b=int(input("請再輸入乙個整數"))if a < b:

a, b = b, a

while b != 0:

temp = a % b

a = b

b = temp

print(a)

5樓:匿名使用者

1#!62616964757a686964616fe78988e69d8331333363393661/usr/bin/env python3.6

def due(cost):

if cost >= 3000:

return cost * 0.85

if cost >= 2000:

return cost * 0.9

if cost >= 1000:

return cost *0.95

return cost

cost = input('please input total cost of the goods: ')

print(f'you should pay: ')2a, b, c = 1, 2, 3

n = 3

while true:

n += 1

a, b, c = b, c, (a+b+c)/2.0if c > 1200:

print(n)

break

3def gys(m, n):

for i in range(min(m, n), 0, -1):

if m % i == n % i == 0:

return i

4def is_wanshu(n):

yinzi = [i for i in range(1, n) if n % i == 0]

return n == sum(yinzi)

python題目求大佬教

6樓:英語好難學

list_weather = [["週一","11℃","26℃","1級","優"],["週二","16℃","26℃","1級","優"],["週三","16℃","20℃","1級","優"],["周四","16℃","26℃","1級","優"]]

excellent_list = [x[0] for x in list_weather if x[-1]=='優']

print("空氣為優的天數:{},它們分別是:".format(len(excellent_list)),end="")

for i in excellent_list:

if i == excellent_list[-1]:

print(i,'\n')

else:

print(i +",",end="")

wind_list = [x[0] for x in list_weather if int(x[2][0:-1])<=25 and int(x[-2][0])<3]

print("風力低於3級且最高氣溫不超過25℃的天數是{},分別是:".format(len(wind_list)),end="")

for i in wind_list:

if i == wind_list[-1]:

print(i,'\n')

else:

print(i +",",end="")

temperature_list = [x[0] for x in list_weather if int(x[2][0:-1])+int(x[1][0:-1])<=40]

print("平均氣溫低於20℃的天數是{},分別是:".format(len(temperature_list)),end="")

for i in temperature_list:

if i == temperature_list[-1]:

print(i,'\n')

else:

print(i +",",end="")

自學python遇到問題,求大佬幫助?

7樓:雙子座的我

這個報錯說的是你的那個split函式 沒有 encode這個引數望採納

8樓:雲南新華電腦學校

建議的話還是不要自學,還是去找乙個學校,因為自學的話比較枯燥乏味。

9樓:陽光的雷咩咩

去掉,encode="utf-8"

10樓:廣石龍網路科技

語句錯誤,要多看看語句!

python語言問題,求大佬指點一下? 20

11樓:陽光的雷咩咩

一方面是pandas,一方面是ascii知識

兩方面都有基礎才看得懂

Python題目求大佬教,python小白求教大佬?

list weather 週一 11 26 1級 優 週二 16 26 1級 優 週三 16 20 1級 優 周四 16 26 1級 優 excellent list x 0 for x in list weather if x 1 優 print 空氣為優的天數 它們分別是 format len ...

python如何呼叫另py檔案的所有函式

在同乙個資料夾下 呼叫函式 a.py檔案 b.py檔案 或呼叫類 a.py檔案 b.py檔案 或在不同資料夾下 a.py檔案的檔案路徑 e pythonproject winycg b.py檔案 針對這個問題,網上有很多的解決方式。其實最主要的原因是因為python無法正確找到你其他資料夾下檔案的路...

程式設計題,求大佬幫忙解答一下 謝謝辣

include int main c語言程式設計題求大佬幫忙解決一下 謝謝了 利用c庫函式提供的方法 很簡單 include define maxn 10 void f long int x,char p int main 你的 將被嵌在這裡 void f long x,char s for i t...