用Python實現檔案亂序(轉)
用Python實現檔案亂序(轉)[@more@]# cat test.dat1 --- I2 --- L3 --- O4 --- V5 --- E6 --- Y7 --- O8 --- U9 --- !10 --- !# cat r.pyimport sys,randomlines = sys.stdin.readlines()olines=[]while lines:olines.append(lines.pop(random.randrange(len(lines))))sys.stdout.write( "".join(olines))# cat test.dat | python r.py6 --- Y4 --- V8 --- U5 --- E3 --- O2 --- L1 --- I10 --- !7 --- O9 ---
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/8225414/viewspace-940634/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 亂序排列檔案中的所有行(轉)
- Python中4種方法實現 xls 檔案轉 xlsxPython
- python實現word2vec訓練結果bin檔案轉txt檔案Python
- 用Socket實現點對點的檔案傳輸 (轉)
- Windows轉到linux中,檔案亂碼,檔案編碼轉換WindowsLinux
- 用Python實現批次掃描域名是否存在指定檔案Python
- 【Python】Python實現解壓rar檔案Python
- Python | 實現pdf檔案分頁Python
- 匯入sql檔案出現亂碼SQL
- 用 Python 實現 PowerDesigner 資料模型檔案的處理Python模型
- 用Python將word檔案轉換成htmlPythonHTML
- Python 實現隨機打亂字串Python隨機字串
- Hadoop檢視檔案///hadoop 清洗檔案出現亂碼Hadoop
- 「Python實用祕技07」在pandas中實現自然順序排序Python排序
- 教你如何運用python實現簡單檔案讀寫函式Python函式
- java 語音用xml檔案實現圖形介面 xml檔案JavaXML
- Python實用方法之讀取本地檔案Python
- python多程式實現檔案海量複製Python
- 用一個檔案,實現迷你 Web 框架Web框架
- python selenium +autoit實現檔案上傳 --實踐Python
- 【python】用python指令碼實現ansible的推送、下載、上傳檔案功能Python指令碼
- Excel開啟CSV檔案出現亂碼怎麼辦?Excel開啟csv檔案出現亂碼的解決方法Excel
- Python:Python中文寫入csv檔案出現亂碼問題的解決方案之一Python
- python+selenium+autoit實現檔案上傳Python
- Python3編碼如何實現檔案操作?Python
- python中xlrd庫如何實現檔案讀取?Python
- python實現修改xml檔案內容詳解PythonXML
- python檔案中寫中文亂碼怎麼解決Python
- 用C++實現下載檔案的功能C++
- python 將 CVS檔案轉為HTML檔案PythonHTML
- 「Python實用秘技13」Python中臨時檔案的妙用Python
- Visual C++實現檔案間批次轉換功能 (轉)C++
- 如何實現將markdown檔案實時轉換為html文件HTML
- Flink使用二次聚合實現TopN計算-亂序資料
- Matlab批量實現圖片檔案格式轉換Matlab
- 如何實現檔案轉換與線上預覽功能
- 實現檔案拖放的一種簡潔方法 (轉)
- 【轉】用C語言實現將一個檔案讀入記憶體中(分享轉載)C語言記憶體