while 小專案練習

2022-06-30 13:33:10 字數 771 閱讀 8128

# (1) 用雙層while 寫十行十列小星星

j = 0

while j < 10:

#列印一行十個小星星

i = 0

while i <10:

print("*",end="")

i+=1

#列印換行

print()

j+=1

# (2)用雙層while 寫十行十列隔列換色小星星

#變數i控制的是列

j = 0

while j <10:

# 列印一行十個小星星

# 變數i控制的是列

i = 0

while i <10:

if i % 2 == 0:

print("★", end="")

else:

print("☆", end="")

i+=1

#列印換行

print()

j+=1

# (2)用雙層while 寫十行十列隔行換色小星星

j = 0

while j<10:

#列印一行一列十個小星星

# 變數i 控制的是列

i = 0

while i<10:

if j % 2 ==0:

print("★", end="")

else:

print("☆", end="")

i+=1

#列印換行

print()

j+=1

經典python基礎小專案練習

3.公升級題 實現乙個整數加法計算器 多個數相加 如 content input 請輸入內容 使用者輸入 5 9 6 12 13,然後進行分割再進行計算。content input 請輸入內容 print content listvar content.split print listvar res...

python資料分析小專案練習

資料來源 小練習import numpy as np import pandas as pd import matplotlib.pyplot as plt plt.rcparams font.sans serif simhei 用來正常顯示中文標籤,否則中文顯示方塊 plt.rcparams ax...

練習 while迴圈

輸入班級人數,然後依次輸入學員成績,計算班級學員的平均成績和總成績 10 迴圈體 提示輸入學員成績,接收,並轉換成整數型別,累加到總成績當中 迴圈條件 迴圈的次數小於等於班級人數 請輸入班級人數 int count convert.toint32 console.readline int sum 0...