标签:
1. 初始化一个类,这个方法名必须为”__init__(object)“。顺便提一下,两边的下划线是均是2个
2. 每个程序块都要使用冒号!!!!
3. 如果程序中使用了非英文字符,需要在Python文档第一行添加:# -*- coding:utf-8 -*-
4. 在类内部,一个方法调用另外一个方法的话,需要添加“self."
# 判断是大王还是小王
def checkRedJoker(self, card):
if ‘Red‘ in card:
return True
else:
return False
# 比较2张牌的大小
def compareTwoCards(self, card1, card2):
card1IsJoker = self.checkJoker(card1)
card1IsRedJoker = self.checkRedJoker(card1)
标签:
原文地址:http://www.cnblogs.com/Lihao2013/p/5444927.html