









Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
Material Type: Notes; Class: Intro to Software Development; Subject: Computer Sci & Software Engr; University: Rose-Hulman Institute of Technology; Term: Unknown 1989;
Typology: Study notes
1 / 17
This page cannot be seen from the preview
Don't miss anything!










CSSE 120 – Rose-Hulman Institute of Technology
Analyze the Problem
Determine Specifications
Create a Design
Implement the Design
Test/Debug the Program
Maintain the Program
ASCII—American Standard Code for Info. Interchange ―Ask-ee‖ Standard US keyboard characters plus ―control codes‖ Extended ASCII encodings Add various international characters Unicode Tens of thousands of characters Nearly every written language known
Lessons Modules to Download in Class Session 5 encode module
Run the module Enter the message: Spam Enter the key: 1 Expected result: [84, 113, 98, 110]
Multiple meanings depending on context
Plug values from tuple into ―slots‖ in string Slots given by format specifiers
%
0 means as many as needed 0 n means pad with leading 0s to n total spaces - n means ―left justify‖ in the n spaces
f for float, s for string, or d for decimal (i.e., int)
Syntax:
Syntax:
Syntax:
infile = open('file.txt','r') abs(-1.2)
infile.read() circle.draw(win)
Tells object to do something
Practice with string formatting Practice with file processing
Lessons Homework Homework 5 Homework 5 Instructions