lyl801013 发表于 2018-8-12 14:13:53

python学习方法

#/usr/bin/env python  
#-*- coding=utf-8 -*-
  
#@author: wklken@yeah.net
  
#@version: 0.1
  
#@date: 2012-08-25
  
#@desc: python学习线路
  

  
step
  
def read(book=<<A Byte of Python>>) #网上先过一遍
  
    if 没兴趣:
  
      return
  
    else:
  
      if 没编程基础:
  
         <<Head First Python>>
  

  
      if need py2.x:
  
         <<Python 核心技术>>
  
      elif py2.x and py3k:
  
         <<Learning Python>>
  
      if you want: #可选
  
         <<Python Tutorial>>
  
      if you have more time and energy:
  
         <<可爱的Python>>
  
         <<Programming Python>>
  
      print "Info: 基本入门了"
  

  
      if you want go farther:
  
            ifTrue:#强烈建议
  
                <<Dive Into Python>>
  
                <<Python源码剖析>>
  
                <<Python高级编程>> #这个,没读过,自己判定吧
  
            if工作需要:
  
                <<Python网络编程>>#网络编程
  
                <<Python在Unix和Linux系统管理中的应用>> #系统管理相关
  
                <<The Django Book>> #web,用到django框架的
  
                <<Django web开发指南>>#同上
  
                <<集体智慧编程>> #算法工程师,or 个人爱好
  
                <<Python自然语言处理>>
  

  
      ifyou want to search for something useful:
  
            <<Python standard Library>>
  
            <<Python cookbook>>
页: [1]
查看完整版本: python学习方法