0% found this document useful (0 votes)
5 views1 page

Python Basics Glossary for Data Science

This document defines key terms used in Python basics and data science. It provides definitions for common data types like Boolean, float, integer and string. It also defines common operations like concatenate, expression, operand and operator. Boolean can be 0 or 1, float has a decimal, integer is a whole number, and a string is alphanumeric characters in quotes.

Uploaded by

Zakaria Nasri
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
5 views1 page

Python Basics Glossary for Data Science

This document defines key terms used in Python basics and data science. It provides definitions for common data types like Boolean, float, integer and string. It also defines common operations like concatenate, expression, operand and operator. Boolean can be 0 or 1, float has a decimal, integer is a whole number, and a string is alphanumeric characters in quotes.

Uploaded by

Zakaria Nasri
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

Python Basics for Data Science

Module 1 Glossary: Python Basics

Term Definition
Boolean A data type that can take on two values: 0 or 1, where
0 represents false and 1 represents true.
Concatenate Combining two or more strings into a single string.
Expression An operation that Python executes such as add or
subtract.
Float A number with a decimal point.
Integer A positive or negative whole number.
Operand A numeric value in an expression.
Operator A math symbol used to combine operands in an
expression.
String A string is a data type containing alphanumeric
characters or symbols. When defining a string the
string should be enclosed in single or double quotes.

You might also like