data types

Cards (11)

  • What are data types in programming?
    Types of data used in code
  • Why don't you need to change variables in Python?
    You can use different data types without changes
  • What is a string variable in Python?
    A variable that contains text
  • What is the value of a float variable in Python?
    1.5
  • What is the value of a boolean variable in Python?
    True
  • What should you notice about string variables in Python?
    They are enclosed in quotation marks
  • What type of numbers are whole numbers in Python?
    Integer numbers
  • What type of numbers are decimal points in Python?
    Floating-point numbers
  • What are boolean values in Python?
    True or False
  • What is significant about the capital letter in True in Python?
    It must be capitalized
  • What are operators in programming?
    Symbols that perform operations