#-*- coding: utf-8 -*-
#python 27
#xiaodeng
#導包三種方法
#(常用)
完整的匯入,也是最基本的方法
importre#
自己定義別名,一般情況下盡量少用此辦法,不方便理解,也不方便其他人看**,個人理解~~~
import
urllib as xiaodeng
html=xiaodeng.urlopen('
html.readline()
#(常用)
第三種方法
from urllib import
urlopen
urlopen(
'')
import 導包三種方法
coding utf 8 python 27 xiaodeng 導包三種方法 常用 完整的匯入,也是最基本的方法 importre 自己定義別名,一般情況下盡量少用此辦法,不方便理解,也不方便其他人看 個人理解 import urllib as xiaodeng html xiaodeng.urlo...
製作Ubuntu deb包的三種方法
original url 一 使用deb包 1.檢視deb包含有哪些檔案 不安裝 dpkg c deb 安裝前根據deb檔案檢視 dpkg l debname 安裝後根據包名檢視 2.安裝deb包 dpkg i deb 注意,如果提示錯誤,可以加引數 force all強制安裝,但不推薦這樣做 3....
製作Ubuntu deb包的三種方法
一 使用deb包 1.檢視deb包含有哪些檔案 不安裝 dpkg c deb 安裝前根據deb檔案檢視 dpkg l debname 安裝後根據包名檢視 2.安裝deb包 dpkg i deb 注意,如果提示錯誤,可以加引數 force all強制安裝,但不推薦這樣做 3.檢視某個檔案屬於哪個deb...