每日一题2019.9.20
作者:互联网
# coding=utf-8
'''
两个乒乓球队进行比赛,各出三人。甲队为a,b,c三人,乙队为x,y,z三人。已抽签决定比赛名单。
有人向队员打听比赛的名单。a说他不和x比,c说他不和x,z比,请编程序找出三队赛手的名单
'''
for a in range(ord("x"), ord("z")+1):
for b in range(ord("x"), ord("z")+1):
if a != b:
for c in range(ord("x"), ord("z")+1):
if (a != c)and(b != c):
if (a != ord("x"))and(c != ord("x"))and (c != ord("z")):
print("比赛的名单是:a--{0},b--{1},c--{2}".format(chr(a), chr(b), chr(c)))
#初学Python 如有不足 请多多指教
标签:三人,20,2019.9,chr,名单,range,ord,一题,比赛 来源: https://www.cnblogs.com/walxt/p/11558140.html