Python的入門操作

2021-08-08 22:26:49 字數 312 閱讀 3013

1、安裝好python要配置環境變數(根據python的安裝路徑,一般為c:\python27):這台電腦--屬性--高階系統設定--環境變數--path:;c:\python27

2、啟動python:cmd python

3、安裝pip: python2.7.14自帶pip(c:\python27\scripts),cmd切換路徑到:c:\python27\scripts,然後執行語句pip install nltk

4、安裝pip成功後,啟動python,執行**: import nltk和nltk.download()  來安裝nltk擴充套件包,安裝所有包

Python入門簡單操作

coding utf 8 created on fri oct 12 15 40 37 2018 author administrator import tensorflow as tf import numpy as np a np.array 1,2,3,4,5,6,7,8,9 dtype fl...

Python字典入門操作

字典是python重要的組合資料型別。字典的操作比列表更複雜,但二者有相似之處,我建議學習字典可以模擬列表的某些操作 方法描述 keys 返回字典中鍵的列表 values 返回字典中值的列表 items 返回元組的列表。每個元組由字典的鍵和相應值組成 clear 刪除字典的所有條目。copy 返回字...

python 檔案操作入門

看這篇部落格前,假設你已經具有以下環境配置 並且具有以下前置技能 usr bin python coding utf 8 file open a.txt encoding utf8 lines file readlines print lines usr bin python coding utf ...