python筆記12 資料處理之欄位拆分

2021-09-09 06:21:40 字數 496 閱讀 3285

# -*- coding: utf-8 -*-

#1. 概念:字段拆分,是指按照固定的字元,拆分已有字串

#字元分割函式:split(sep,n,expand=false)

#sep: 用於分割的字串

#n:分割為多少列

#expand:是否展開為資料框,預設為false,但我們往往會設定為true

#返回值:如果expand為true,則返回dataframe;否則返回series

from pandas import read_csv

df = read_csv('d:/python/workspace/pythonstudy/12.csv')

newdf = df['name'].str.split(' ',1,true) #使用空格拆分;列數設定為1,也就是拆分為兩列

#新生成的newdf物件沒有自定義的列名,所以一般情況下需要自己定義:

newdf.columns = ['band','name']

Python之資料處理

靠別人不如靠自己,學學學學學學學學!原資料 需求 coding utf 8 txtfile aminer1.txt newtxtfile open new txtfile,w with open txtfile,r as file to read lines file to read.readlin...

python之資料處理

檔案資料讀寫的基本操作 import this 本地檔案的界定 指向乙個本地儲存的檔案,是乙個連線或者乙個對映 path1 c users 11786 desktop test.txt 正斜線兩個或者反斜線乙個來用於資料路徑的表達 再或者用r 寫在檔案路徑外面 推薦第三種 path2 c users...

python筆記6 資料處理之匯入資料

coding utf 8 資料一般儲存在檔案 csv txt excel 和資料庫中 1.匯入csv檔案 第一行是列名 from pandas import read csv 檔案的編碼格式也應該是 utf 8 才行,否則報錯 df read csv d python workspace pytho...