TAILIEUCHUNG - Dive Into Python-Chapter 13. Unit Testing

Tham khảo tài liệu 'dive into python-chapter 13. unit testing', công nghệ thông tin, kỹ thuật lập trình phục vụ nhu cầu học tập, nghiên cứu và làm việc hiệu quả | Chapter 13. Unit Testing . Introduction to Roman numerals In previous chapters you dived in by immediately looking at code and trying to understand it as quickly as possible. Now that you have some Python under your belt you re going to step back and look at the steps that happen before the code gets written. In the next few chapters you re going to write debug and optimize a set of utility functions to convert to and from Roman numerals. You saw the mechanics of constructing and validating Roman numerals in Section Case Study Roman Numerals but now let s step back and consider what it would take to expand that into a two-way utility. The rules for Roman numerals lead to a number of interesting observations 1. There is only one correct way to represent a particular number as Roman numerals. 2. The converse is also true if a string of characters is a valid Roman numeral it represents only one number . it can only be read one way . 3. There is a limited range of numbers that can be expressed as Roman numerals specifically 1 through 3999. The Romans did have several ways of expressing larger numbers for instance by having a bar over a numeral to represent that its normal value should be multiplied by 1000 but you re not going to deal with that. For the purposes of this chapter let s stipulate that Roman numerals go from 1 to 3999. 4. There is no way to represent 0 in Roman numerals. Amazingly the ancient Romans had no concept of 0 as a number. Numbers were for counting things you had how can you count what you don t have 5. There is no way to represent negative numbers in Roman numerals. 6. There is no way to represent fractions or non-integer numbers in Roman numerals. Given all of this what would you expect out of a set of functions to convert to and from Roman numerals requirements 1. toRoman should return the Roman numeral representation for all integers 1 to 3999. 2. toRoman should fail when given an integer outside the range 1 to 3999. 3. .

TỪ KHÓA LIÊN QUAN
TAILIEUCHUNG - Chia sẻ tài liệu không giới hạn
Địa chỉ : 444 Hoang Hoa Tham, Hanoi, Viet Nam
Website : tailieuchung.com
Email : tailieuchung20@gmail.com
Tailieuchung.com là thư viện tài liệu trực tuyến, nơi chia sẽ trao đổi hàng triệu tài liệu như luận văn đồ án, sách, giáo trình, đề thi.
Chúng tôi không chịu trách nhiệm liên quan đến các vấn đề bản quyền nội dung tài liệu được thành viên tự nguyện đăng tải lên, nếu phát hiện thấy tài liệu xấu hoặc tài liệu có bản quyền xin hãy email cho chúng tôi.
Đã phát hiện trình chặn quảng cáo AdBlock
Trang web này phụ thuộc vào doanh thu từ số lần hiển thị quảng cáo để tồn tại. Vui lòng tắt trình chặn quảng cáo của bạn hoặc tạm dừng tính năng chặn quảng cáo cho trang web này.