例如,我想使用python從文本文件中取出前30%的數據。從txt文件中獲取一定數量的數據
這裏有一些代碼我都試圖產生兩個新的文件,但我不知道如何利用數據的一定比例和他們寫
這裏是:
import sys
def NewFile(FileName):
open(FileName,'r')
print('Creating new text file')
#A for 70% training data
AFileName = 'A'+FileName
#B for 30% testing data
BFileName = 'B'+FileName
try:
afile = open(AFileName,'a')
bfile = open(BFileName,'a')
afile.close()
bfile.close()
except:
print('~~~~~~')
sys.exist(0)
percentae意味着如果有100行做你想要30線 –