python作业求助’tuple函数的‘
好歹截图放正啊 def posToIndex(s):n = [ x for x in "12345678"]
dicta = {"a":0, "b":1, "c":2, "d":3, "e":4, "f":5, "g":6, "h":7,\
"A":0, "B":1, "C":2, "D":3, "E":4, "F":5, "G":6, "H":7}
ss = s.strip()
if len(ss)==2 or ss.isspace:
if ss in n and ss[-1] in dicta.keys() :
x = n.index(ss)
y = dicta]
return (max(x,y),min(x,y))
elif ss in dicta.keys() and ss[-1] in n:
x = dicta]
y = n.index(ss[-1])
return (max(x,y),min(x,y))
raise ValueError
raise ValueError
posToIndex("C4")
(3, 2)
posToIndex("4c")
(3, 2)
posToIndex("4c")
(3, 2)
posToIndex("xc")
Traceback (most recent call last):
File "<pyshell#49>", line 1, in <module>
posToIndex("xc")
File "<pyshell#45>", line 15, in posToIndex
raise ValueError
ValueError 某度翻译:
任务3.将位置字符串转换为索引:pos Toindex(s)编写一个函数pos Toindex(s),该函数将字符串s作为参数,并返回一个元组(r,c),其中rand c对应于关联的板行和列位置的索引。字符串s应包含1,8中的一位整数和a,,h(或a,,h)中的一个字母,周围可能有空格。如果无法转换提供的字符串,则函数应引发aValueerror异常。示例:pos Toindex(C4)、postindex(4c)、postIndex(C4)都应返回元组(3,2)。但是,后置索引(x 9)或后置索引(c3 3“)应引起aValueerror第5页,共9页
治好了我多年的劲椎病(滑稽)
页:
[1]