Please enable JavaScript to use CodeHS

Python Basics Glossary

Flashcards

Course:

Module:

Lesson:

Search:

Boolean Python

A True or False value

Floating Point Numbers Python

Also called floats, floating point numbers represent real numbers and are written with a decimal point dividing the integer and fractional parts.

Integer Python

A positive or negative whole number.

String Python

A sequence of characters surrounded by quotation marks.

int(string) Python

Converts a string into an integer

str(number) Python

Converts number to text

float(string) Python

Converts a string into a float

Type Conversion Python

The process of converting the value of one data type (integer, string, float, etc.) to another data type is called type conversion.