Variable Types
Your API requests are authenticated using API keys. Any request that doesn't include an API key will return an error.
You can generate an API key from your Dashboard at any time.
What is Variable?
Variables are nothing but reserved memory locations to store values. It means that when you create a variable, you reserve some space in the memory.
Based on the data type of a variable, the interpreter allocates memory and decides what can be stored in the reserved memory. Therefore, by assigning different data types to the variables, you can store integers, decimals or characters in these variables.
Python has no command to declare a variable. A variable created the moment you assign a value to it

What is Variable Types?
Types of data that Python able to store:
Number - Variable - Number
String - Variable - String
List - Variable - List
Tuple - Variable - Tuple
Dictionary - Variable - Dictionary
Set - Variable - Set
Variable names are case-sensitive.
Last updated