5.1. Modules and Getting Help- 5.5. Glossary

random() function returns a floating point number in the range[0.0 - 1.0] -> mặc định là như thế
randrange(a, b) thì sẽ chạy từ a tới b (số nguyên)

deterministic: xác định
Một quá trình lặp lại và có thể dự đoán
A process that is repeatable and predictable.

documentation - Tài liệu
A place where you can go to get detailed information about aspects of your programming language.
Nơi mà bạn có thể tới để có thông tin chi tiết về các khía cạnh ngôn ngữ lập trình của mình

module
A file containing Python definitions and statements intended for use in other Python programs. The contents of a module are made available to the other program by using the import statement.
Một tập tin chứa các định nghĩa và câu lệnh để sử dụng trong chương trình python khác. Nội dung củam ột modul được cung cấp cho chương trình khác bằng cách sử dụng câu lệnh import.

pseudo-random number
A number that is not genuinely random but is instead created algorithmically.

Mã giả - số ngẫu nhiên
random number
A number that is generated in such a way as to exhibit statistical randomness.
Một số là thật nhưng thay vào đó là tạo ra thuật toán.

random number generator
A function that will provide you with random numbers, usually between 0 and 1.
Số ngẫu nhiên
một con số được tạo ra theo cách như thể hiện sự ngãu nhiên
standard library
A collection of modules that are part of the normal installation of Python.
Thư viện tiêu chuẩn
một tập hợp các modun là một phần của tiến trình cài đặt bình thường của python.

Nhận xét

Bài đăng phổ biến từ blog này

2.7. Operators and Operands - toán tử và toán hạng

1.11. Formal and Natural Languages