-
Notifications
You must be signed in to change notification settings - Fork 152
/
exercise7_1.py
executable file
·28 lines (24 loc) · 992 Bytes
/
exercise7_1.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/usr/bin/env python3
"""
Exercise 7.1: Write a program to read through a file and print the contents
of the file (line by line) all in upper case. Executing the program will look
as follows:
python shout.py
enter a file name: mbox.short.txt
FROM [email protected] SAT JAN 5 09:14:16 2008
RETURN-PATH: <[email protected]>
RECEIVED: FROM MURDER (MAIL.UMICH.EDU [141.211.14.90])
BY FRANKENSTEIN.MAIL.UMICH.EDU (CYRUS V2.3.8) WITH LMTPA;
SAT, 05 JAN 2008 09:14:16 -0500
You can download the file from
www.py4e.com/code3/mbox-short.txt
Python for Everybody: Exploring Data Using Python 3
by Charles R. Severance
"""
# If in a unix-like environment, you can download mbox-short.txt with the
# following command,
# $ curl -O https://www.py4e.com/code3/mbox-short.txt
fhand = open('mbox-short.txt')
for line in fhand: # Handles one line at a time
shout = line.rstrip().upper() # Removes newline and capitalizes
print(shout)