1. 程式人生 > >python 提取一行中任意路徑

python 提取一行中任意路徑

import os.path  
f2= open('1.txt', 'w')
fopen=open("point.txt","r")
lines=fopen.readlines()
for line in lines:
	line1=line.split()
	f2.writelines(line1[0]+' '+line1[-3]+' '+line1[-2]+' '+line1[-1]+"\n")
f2.close()




import os.path  
f2= open('angle.txt', 'w')
with open('point.txt','r') as fd1:
    for line1 in fd1:
    	word=line1.split()
    	f2.write(line1[-3]+' '+line1[-2]+' '+line1[-1]+"\n")			
fd1.close()
f2.close()

相關推薦

python 提取一行任意路徑

import os.path f2= open('1.txt', 'w') fopen=open("point.txt","r") lines=fopen.readlines() for line

Python提取圖片的文字資訊,騰訊內部技術,一行程式碼搞定!

用過手機QQ就知道,點選一個圖片會彈出一個小功能,那就是提取圖片中的文字。非常方便實用,那麼很難實現嗎?利用Python提取圖片中的文字資訊,只需要一行程式碼就能搞定!當然,這是吹牛皮的,但是真正的Python程式碼也就第4行,說是一行程式碼搞定也沒錯。示例:效果儘管執行Py

python提取字串的數字

字串儲存在string.txt中,將字串中的數字提取出來,組成心得字串,並列印輸出。 #!/usr/bin/env python3 file=open('/home/user/string.txt') file_context=file.read() i=0 string='' wh

Python 提取字串的數字

方法*正則表示式. re.findall >>> import re >>> str1="this book is 99 yuan 8" >>> a=re.findall(r'\d',str1) #在字串中找到正則表示式所匹配的所

python提取文字的數字, 文字複製

提取文字中的數字 #!/usr/bin/env python3 with open(r'/home/shiyanlou/Code/String.txt', 'r') as f:     f1 = f.read() s = [] for w in f1:   &nbs

python 與win 路徑問題

一,路徑 檔案概念 檔案好理解,比如D盤下的a.txt就是一個檔案。 路徑是指的檔案在作業系統上的位置,比如D盤下,就表示一個位置,也就是路徑。 二,windows和linux對路徑的不同處理 好比兩個程式設計師,寫程式的時候習慣不同,兩個作業系統對路徑寫法的規定

關於實現點選表格一行任意一行即選中該行相關複選框,同時改變背景色的問題

js程式碼 /* * 點選tr即可勾選當前行復選框 * zhouxy * */ function checkTr(tr) { var tds = tr.childNodes; for(var j = 0; j < tds.length; j++) {

Binary Tree Maximum Path Sum 二叉樹任意路徑的最大和

Given a binary tree, find the maximum path sum. For this problem, a path is defined as any sequence of nodes from some starting node to any node in the tr

python 提取redis所有的keys 和資料

import redis   pool = redis.ConnectionPool(host='127.0.0.1', port=6379, db=0)   r = redis.Redis(connection_pool=pool)   pipe = r.pipeline()   pipe_

python提取檔案的關鍵詞及部分上下文內容

也包含了資料夾中檔案遍歷 # -*- coding: utf-8 -*- #允許中文註釋 #需要提取文字夾下所有文字的一些資訊(***有些需要轉換格式****),存到一個新檔案res.txt中 import re #正則模組 import os #檔案處

Python:提取網頁的電子郵箱

import requests, re #regex = r"([a-zA-Z0-9_.+-][email protected][a-zA-Z0-9-]+\.[a-zA-Z0-9-.]+)" #這個正則表示式過濾掉了qq郵箱 regex = r"([a-zA-Z0-9_.+-][email

Python提取PDF的圖片

# 2018/08/16更新: 有些同學不知道fitz庫是什麼,它是pymupdf中的一個模組,操作PDF非常舒服,只需要pip安裝即可: pip install pymupdf Python提取word中的圖片(需要的自取): 最近專案需要把word、PDF中的

python提取文字的中文

# -*- coding: utf-8 -*- import re import sys reload(sys) sys.setdefaultencoding("utf8") def translate(str): line = str.strip().decod

js 中點選一行任意列資料,則可以讓選中或者取消選中

$(function () { $("#data_table tr:gt(0)").click(function () { console.log($(this).find(":checkbox").prop("checked"))

提取文字任意 浮點數

//d.txt為下面一行內容:( 去掉前面的// ) //01.2,3.45;5.6789 -0.12345678901234 abc 1234567890.123456789123456789 1e300 0 #include <stdio.h> int n,

CSS3屬性之text-overflow:ellipsis,指定多行文本任意一行顯示...

插件 技術分享 分享 http white play clam pla nbsp 對於text-overflow:ellipsis,文本超出部分顯示...,但要實現這個效果,卻有一些必備條件,如下: div{ overflow:hidden; white-spac

pythonos路徑相關的函數 os.mkdir和os.makedirs

sdn art fun str dir() python indent net oar 傳送門:http://blog.csdn.net/shennongzhaizhu/article/details/51455063 在Python中可以使用os.mkdir()函數創

一行代碼提取urlquerystring的某個key的值

技巧 filter string repl pla 效率 括號 正則 如果 var itemdata = "OrderFilter=0&ProjectTag=15&DateType=0"; var projectTag = itemdata.repla

python學習筆記——爬蟲提取網頁的信息

個數 傳輸 自由 tro 不一定 很多 set 字符串 2.4 1 數據類型 網頁中的數據類型可分為結構化數據、半結構化數據、非結構化數據三種 1.1 結構化數據 常見的是MySQL,表現為二維形式的數據 1.2 半結構化數據 是結構化數據的一種形式,並不符合關系型數據

python路徑問題小記

下面是自己在使用python os模組時,有關文件路徑的小筆記:   os.path.exists() os.path.isdir() os.path.isfile() 1. 相對路徑(當前目錄下): ./thinkpython/test.txt  &nb