python学习笔记1月8日-1月12日

Posted zigua

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python学习笔记1月8日-1月12日相关的知识,希望对你有一定的参考价值。

目标:打算是花两三个礼拜差不多,不到一个月的时间接触一下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)
View Code
技术分享图片
1 from Restaurant import *
2 
3 my_luck = Restaurant(panhaowei,admin,sex=man,like=book)
4 my_luck.describe_restaurant()
5 my_luck.hello()
View Code

 

  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

以上是关于python学习笔记1月8日-1月12日的主要内容,如果未能解决你的问题,请参考以下文章

学习笔记(10月25日)--python的ifwhilefor语法

学习笔记(11月14日)--正则

Linux学习笔记十二周二次课(4月24日)

20171121_Python学习六周二次课(11月21日)

学习笔记(10月23日) --python常用方法

一周第一次课(3月12日)笔记