目标:打算是花两三个礼拜差不多,不到一个月的时间接触一下python,能百度用用爬虫啥的,做做一些个人向兴趣的东西,而且年中买的一本《redis实战》里面就是用python示例的。放着也吃了好久的灰。
1月8日
看的是电子书《python编程:从入门到实践》,看了一天也才看80页。9.1节创建和使用类。
看的好慢,效率比我想象的低多了,一开始花在基础变量的介绍的啥,花了太多时间,不过不看也不行。而且巨无聊,超想弃了算了。。
下午迟点看到函数类,开始有点意思了。终于不在只是无聊的介绍。
然后跟着9.1节开始新建类,发现弹出了不知道的错误,看不懂错误提示,自己找了好久。。最后百度了一下错误提示,hh,原来是tab键和空格键一起用了,虽然看不出来,但是确实是不匹配的一行了。。郁闷。。。要是一开始就百度错误提示就可以省好多时间了。
先看到这里吧,明天划水继续。
附上今天的小总节代码
1 class Restaurant: 2 def __init__(sell, user_name, user_type, **user_info): 3 sell.userinfo = {} 4 sell.user_name = user_name 5 sell.user_type = user_type 6 for key, val in user_info.items(): 7 sell.userinfo[key] = val 8 def describe_restaurant(sell): 9 print("name is " + sell.user_name.title() + ", type is " 10 + sell.user_type.title() +"\n") 11 print("user_info is \n") 12 print(sell.userinfo) 13 def hello(sell): 14 if sell.user_type == ‘admin‘: 15 print("hello admin") 16 else: 17 print("hello " + sell.user_name)
1 from Restaurant import * 2 3 my_luck = Restaurant(‘panhaowei‘,‘admin‘,sex=‘man‘,like=‘book‘) 4 my_luck.describe_restaurant() 5 my_luck.hello()
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~