今天做作業
1、使用while迴圈輸入1 2 3 4 5 6 8 9 10
n = 1while n < 10:
print(n)
n = n+1
if n == 7:
n=8print(10)
2、求1-100所有數的和 (5050)
n1 = 0
n2 = 1while n2 > 0 and n2 < 101:
n1 = n1+n2
n2 = n2+1
print(n1)
3、輸出1-100內所有的奇數
n = 1while n < 100:
if n % 2 == 0:
pass
else:
print(n)
n = n+1
4、輸出1-100內所有的偶數
n = 1while n < 101:
if n % 2 == 0:
print(n)
else:
pass
n = n+1
5、求1-2+3-4+5...99的值
(此題其實是求1到99之內,奇數和減去偶數和的值)
x = y = 0n = 1
k = 0
while n<100:
n=n+2
x=x+n
while k<100:
k=k+2
y=y+k
print(x-y)
6、使用者登入(三次機會)
大佬的答案 現在實在看不懂 等以後回過頭再看吧!
2023年9月17日 自學python第九天
基本資料型別的分類以及魔法 數字 int 按ctrl鍵 滑鼠點選int 顯示int魔法 其它同這個一樣 字串 str 列表 list 元祖 tuple 字典 dict 布林值 bool 1 int 換功能,將字串轉換為數字 a 123 print a 輸出結果為123 但是資料型別為str b in...
2023年9月9日訓練日記
這段時間主要看了饒齊部落格的揹包部分和cf題解的前幾道題。然後就是昨天今天兩場網路賽。這兩場網路賽都沒出線,乙個最明顯的感覺就是,為啥別人都會就我們不會?還是和多校的問題一樣。要麼就是簡單的模板題,但是知識點不會 但是現在基本已經解決 另外乙個重要的問題就是題目不難,但是不會。思考原因 1 題量不夠...
2023年9月28日 周五
mimic fn 將源函式的所有屬性複製到目標函式上 const mimicfn require mimic fn function a function b mimicfn b,a 將a函式的屬性複製給b函式原始碼就一段 module.exports to,from return to 使用es6...