python 에서 자주 사용 하 는 프로 그래 밍 모듈 에 대해 이야기 합 니 다.

파일 흐름 읽 기와 쓰기
배열 로 저 장 된 txt 파일 읽 기
try 를 사용 하여 이상 발견,while 검 측 파일 끝 을 사용 하여 읽 기

file_to_read = raw_input("Enter file name of tests (empty string to end program):")
try:
    infile = open(file_to_read, 'r')
    while file_to_read != " ":
        file_to_write = raw_input("Enter output file name (.csv will be appended to it):")
        file_to_write = file_to_write + ".csv"
        outfile = open(file_to_write, "w")
        readings = (infile.readline())
        print readings
        while readings != 0:
            global count
            readings = int(readings)
            minimum = (infile.readline())
            maximum = (infile.readline())
읽 을 줄 마다 for 를 사용 하여 한꺼번에 읽 고 입력 합 니 다.
다음 호출 된 프로그램 에서 읽 은 데 이 터 는?
在这里插入图片描述

result = list()
    with open('../test/parameter.txt') as  f:
        for line in f.readlines():
            temp = list()
            #            ,         
            b = line.strip(",][").split(',')
            if(len(b) >= 5):
                b.pop()
            for a in b:
                a = a.replace('[','').replace(']','')
                temp.append(float(a))
            result.append(temp)
            #print("     temp ",temp)
            #print("   result     ",result)
str 의 특정 문자 삭제
문자열 의 맨 끝 에 있 는 불필요 한 문자열 strip 삭제()

#           
def string_remove():
   str1 = ' abc     
' print str1.strip() # abc str2 = '----abcdf++++' print str2.strip('-+') # abcdf
replace 함수,문자열 의 모든 문자열 삭제

ss = 'old old string'
ret = ss.replace('old', 'new', 1)
print(ret)
sub 함수,여러 문자열 을 삭제 합 니 다.정규 표현 식 을 사용 합 니 다.

str2 = '
abc
wrt22\t666\t' #
,\t import re print(re.sub('[
\t]','',str2)) # abcwrt22666
이상 은 python 에서 자주 사용 하 는 프로 그래 밍 모듈 의 상세 한 내용 을 이야기 하 는 것 입 니 다.python 프로 그래 밍 모듈 에 관 한 자 료 는 다른 관련 글 을 주목 하 십시오!

좋은 웹페이지 즐겨찾기