from lab10 import Card
from lab10 import ChipBank
import random
# returns string
class BlackjackHand(list):
def __str__(self):
hand = ' '
for item in self:
x = item.get_suit()
y = item.get_rank()
hand += (str(y) + " of " + str(x) \
+ ',')
return hand
答案 0 :(得分:2)
这里有两种可能性。
pep8
工具是可见的。\r\n
)和Unix风格(\n
)行结尾。如果第一行以\r\n
结尾,但是其他一些行以\n
结尾,pep8
将假设它们都是一大行。 Python本身可能猜你想要什么,让你逃脱它,但你仍然应该修复它。如果您的文本编辑器没有任何方法向您显示尾随空格和换行符,您可能希望获得更好的字符。但与此同时,您可以编写一个Python脚本来清理Python脚本......