1樓:匿名使用者
迴圈列表a,得到其中的每一個二級列表i。迴圈每一個二級列表i。得到列表裡的每一個值j。定義一個變數n每迴圈一次,就把n加上一個j。最後得到的n就是所有數值的和
2樓:匿名使用者
list = [[1,2],[3,4,5],[5,6],[7,8],[1,2],[345,44],[58,64,102],[70,898],[11,200],[30,47],[105,26,34,80],[97,78],[100,200]]
sum_val = 0
for p in range(len(list)) :
for e in list[p] :
sum_val += e
print(sum_val)
程式bai縮du進zhi
如圖dao所回示答
求助python大神程式設計
3樓:哈哈呵呵你好
你好,下面是改好的對應的**:
age = input("your age is ")while age:
age = int(age)
if 18 <= age:
print (" you can drive car now")else:
print ("sorry!")
print ("enter age or press enter to quit")
age = input("your age is ")print ("quit")
求助python大神,django大神需要思路
4樓:花臂華盛頓
1、首先找到,linu系統軟體的log日誌輸出介面2、拿到介面接收資料,先不管取多少條,取到資料在說3、在django中view中編寫輸出邏輯4、既然是下拉才載入所有資料,那就是ajxa請求可以實現,如果公司不要求技術棧,那就jquery寫,比較簡單,下拉到一定位置,ajxa請求資料到路由,在到view中判斷實現邏輯。
求助大神:這裡有個遊戲怎麼用python程式設計,遊戲是這樣的:
5樓:片山巷茅
遊戲怎麼用python程式設計
6樓:匿名使用者
# :兩個人輪流報數,第一個人只能報1或2,第二個人只能在第一個人報數的基礎上+1或者+2來報數,以此類推,誰先報20,誰就贏
import random
people1_num=0
people2_num=0
while 1:
if people1_num==20:
print('people 1 贏了')
break
elif people2_num == 20:
print('people 2 贏了')
break
people1_num+=random.randint(1,2)print('people 1 是%d'%people1_num)people2_num=people1_num+random.randint(1,2)
print('people 2 是%d'%people2_num)people 1 是2
people 2 是3
people 1 是4
people 2 是5
people 1 是6
people 2 是8
people 1 是7
people 2 是8
people 1 是8
people 2 是9
people 1 是10
people 2 是12
people 1 是12
people 2 是13
people 1 是13
people 2 是14
people 1 是15
people 2 是17
people 1 是16
people 2 是17
people 1 是18
people 2 是19
people 1 是19
people 2 是20
people 2 贏了
又來求助了,大神求解答python類繼承的問題
encoding utf 8 class people name age 0 定義私有屬性,私有屬性在類的外部無法直接訪問 weight 0 定義構造方法 def init self,a,w 呼叫時需傳入self相當於this self.name mhc self.age a self.weight...
求助!Python錯誤NameErrorname是
temp input 請問 小姐願意做我女朋友嗎?是 否 if temp 是 我寫了一個python程式,報錯nameerror name i is not defined 你是想寫遞迴求列表最小值的 吧,問題太多 def min i min 是標準函式,不應定義專一個同名的i len list 1...
python查詢排序問題,求助
usr bin env python coding utf 8 def getformat filename with open filename as f return map str.strip,sorted f,key lambda line 100 line.count 老虎 zhi res...