Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions class_one/01_data_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@

## WARM UP QUIZ

# What is a data type?
# In Computer Science and Computer Programming, a data type (also called simply "type) is a collection of data values that are either a set of possible values, a set of permitted operations for certain values, or values represented by machine type. By constraining possible values, data types allow interpreters and/or compilers to efficiently use certain data in the manner that a programmer wishes it to be use. As a result, many programming languages support basic data types of integers (no matter the size), floating-point numbers (approximations of real numbers, usually labeled as "float"), characters, and Booleans (a data type used in True/False variables and lines of code).

# PART I
a = 5
b = 5.0
Expand Down