Skip to content

Instantly share code, notes, and snippets.

@Mstandley1985
Last active February 2, 2021 23:49
Show Gist options
  • Save Mstandley1985/479985ef644cca63f07038c993c31938 to your computer and use it in GitHub Desktop.
Save Mstandley1985/479985ef644cca63f07038c993c31938 to your computer and use it in GitHub Desktop.

alt text

Data Types

Data Types

  1. String: A group of letters that represent a sentence of a word. Defined by enclosing a text within a single " or double "" quotes.
  2. Integer: A whole number. No decimals.
  3. Float: A number that is allowed to use decimals.
  4. Boolean: Represents only one bit of information either true or false.
  5. Array: Stores data or a list of data. It can contain all types of data. Data in an array are separated by a comma in between them are enclosed within a square bracket.
  • String
  • Integer
  • Float
  • Boolean
  • Array

This is my list and knowledge of data types

this is my list and knowledge of data types

data_type = "Integer"

data_type = "integer"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment