본문 바로가기
공부/파이썬

Python Data Structures 3주차

by 남오공 2022. 1. 14.
728x90

사진이 없어 허전해서 구글링해옴

 

파일 입출력에 관하여 배웠다.

 

 

과제

7.2 Write a program that prompts for a file name, then opens that file and reads through the file, looking for lines of the form:

X-DSPAM-Confidence:    0.8475

Count these lines and extract the floating point values from each of the lines and compute the average of those values and produce an output as shown below. Do not use the sum() function or a variable named sum in your solution.

You can download the sample data at http://www.py4e.com/code3/mbox-short.txt when you are testing below enter mbox-short.txt as the file name.

 

 

작성 코드 

# Use the file name mbox-short.txt as the file name
fname = input("Enter file name: ")
fh = open(fname)

count=0
total=0
num=0


for line in fh:
    if not line.startswith("X-DSPAM-Confidence:"):
        continue
    a = line.find(' ')
    b=line[a+1:]
    num=float(b)
    total=total+num
    count=count+1
    
print('Average spam confidence:',total/count)

'공부 > 파이썬' 카테고리의 다른 글

dataframe series  (0) 2022.01.24
python Data structures 8.4 list  (0) 2022.01.15
파이썬의 다양한 string 함수 예시  (0) 2022.01.14
python data structures 1주차 -string  (0) 2022.01.14
모두를 위한 프로그래밍 7주차  (0) 2022.01.13

댓글