Python練習題022 桌球比賽

2021-09-23 14:34:00 字數 461 閱讀 8138

題目:兩個桌球隊進行比賽,各出三人。甲隊為a,b,c三人,乙隊為x,y,z三人。已抽籤決定比賽名單。有人向隊員打聽比賽的名單。a說他不和x比,c說他不和x,z比,請程式設計序找出三隊賽手的名單。

a,b,c都和x,y,z對應。可以用a,b,c儲存x,y,z變數的值,這樣可以建立起來對應關係。然後只要滿足條件就好:a!=b and b!=c and c!=a and a!=『x』 and c!=『x』 and c!=『z』。

for a in ['x','y','z']:

for b in ['x','y','z']:

for c in ['x','y','z']:

if a!=b and b!=c and c!=a and a!='x' and c!='x' and c!='z':

print("a和{}比賽,b和{}比賽,c和{}比賽".format(a,b,c))

python書中練習題 python練習題

1 定義乙個空列表,接收從鍵盤輸入的整數,把列表傳給乙個從大到小排序的函式,再輸出排序後的列表的值 listex b 0 a int input 請輸入列表長度 while b a num int input 請輸入字元 b 1 print listex sum 0 for i in range 0...

python的練習題 Python練習題

1 使用while迴圈輸入1 2 3 4 5 6 8 9 10 i 0while i 10 i i 1 if i 7 continue print i 結果 e python python python test.py1 2 求1 100的所有數的和 i 0sum 0 while i 100 i 1...

python練習題目

三色球問題 有紅 黃 藍三種顏色的求,其中紅球 3 個,黃球 3 個,綠球 6 個。先將這 12 個球混合放在乙個盒子中,從中任意摸出 8 個球,程式設計計算摸出球的各種顏色搭配。print red tyellow tblue for red inrange 0,4 for yellow in ra...