代码改变世界

day02python基础核心

2018-03-01 14:21 by 欢乐小汤勺, 85 阅读, 0 推荐, 收藏, 编辑
摘要:模块导入 sys.path.append("/home")import xxx#include "xxx.h"当前路径#include "../xxx.h"上一级路径 c.copy.deepcopy(a)--》深copy 阅读全文

python爬虫1

2018-02-24 08:35 by 欢乐小汤勺, 80 阅读, 0 推荐, 收藏, 编辑
摘要:BeautifulSoup pycharm-->settings >project inter...导入库 Soup=BeautifulSoup(html,'lxml') 代码:from bs4 import BeautifulSoupwith open('D:\\python\\day1\\ale 阅读全文

day01Python

2018-02-23 10:48 by 欢乐小汤勺, 102 阅读, 0 推荐, 收藏, 编辑
摘要:linux下:vi 01.txt -->i或o--》进入编辑模式 》英文输入法按esc退出,在wq或x即可 第一个ptyhon程序 print("hello world") 单行注释# 多行注释""" """ 或''' ''' 在有中文的情况下,程序第一行要写#-*- coding:utf-8 -* 阅读全文