类属性 类方法

# class Dog():#类也是一种特殊的对象
#     print('haha')
#     count = 0
#     def __init__(self):
#         self.name='大黄'#公有属性
#         self.__age = 10#私有属性
#         # print('haha')
#     def eat(self):#共有方法  
#         print('吃')
#     def __test(self):#私有方法
#         print('私有方法')
# dog = Dog()
# dog.eat()
# print(dog.name)

# 类属性  类方法
# class  Dog():
#     print('hahah')
#     count = 1#类方
#     __a = 100
#     def __init__(self):
#         self.name='大黄'#实例属性
#         self.__age = 2#私有属性
#         self.count = 2
#         # print('hahaha'
#     def eat(self):#实例方法 公共方法
#         print('吃')
#     def __asd(self):#私有方法
#         print('汪汪')
#     # def getA(self):
#     #     return Dog.__a 


#     @classmethod
#     def getcount(cls):
#         return cls .count

 

# dog = Dog()
# print(dog.getcount())
# print(Dog.getcount())
# # # print(dog.getA())
# print(dog.count)
# print(Dog.count)


# dog = Dog()
# dog.eat()
# print(dog.name)


import re 
# result = re.match('baidu','baidu.com')
# print(result.group())

# result = re.match('h','hello python')
# print(result.group())
# print('*'*20)

# result = re.match('[hH]','hallo python')
# print(result.group())
# print('*'*20)

# result = re.match ('天宫1号','天宫1号发射成功')
# print(result.group())
# print('*'*20)
# result = re.match ('天宫\d\d号','天宫10号发射成功')
# print(result.group())
# print('*'*20)

# mm='c:\\a\\b\\c'
# print(mm)

ret = re.match('[1-9]?\d','100')
print(ret.group())

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值