目錄
count=0
while count <10:
count+=1
print(count)
count=0
total=0
#定義兩個變數
while count <=100:
total +=count # 每迴圈一次,total的count都需要累計加一次
count=count+1 #每迴圈一次,count都需要增加1
print(total) #輸出結果
count=1
while count<=100:
if count%2 != 0:
print(count)
count+=1
count=1
while count<=100:
if count%2 != 1:
print(count)
count+=1
while count<3:
name=input("請輸入使用者名稱")
password=input("請輸入密www.cppcns.com碼")
if name=="huxiaohui" and password=="123456":
print("你答對啦")
break
else:
print程式設計客棧("錯啦 再來一次")
count+=1
C語言基礎5道題
都是手撕 建議自己推一遍。1 a1b2c3d4e5 include void uppercase char str int main 2 0,0,1,1 include int main 3 b 10,c 12,d 120 include int main 4 48 include int main...
5道Python筆試面試題
1.字串處理 將字串中的數字替換成其兩倍的值,例如 個人思路 先用正規表示式將其中的數字匹配出來進行乘2操作,然後將字串根據其中的數字進行切割,得到乙個字元列表,最終將乘以2後的數字和原有的字元進行拼接得到最後的結果。import re text as7g123m d f77k nums re.fi...
Python基礎 姿勢 5
本章學習python 類的建立以及如何使用 工程結構如下圖 一次模擬汽車的簡單嘗試 class battery 一次模擬電動汽車電瓶的簡單嘗試 def init self,battery size 70 初始化電瓶的屬性 self.battery size battery size def desc...