python學習筆記1月8日-1月12日

來源:互聯網
上載者:User

標籤:user   爬蟲   from   key   就是   pre   pen   rom   img   

目標:打算是花兩三個禮拜差不多,不到一個月的時間接觸一下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日

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.