Variables ====================== .. raw:: html

Follow along: Python Variables

The program launching process along with parameter settings are all simplified and set up on the Jupyter Notebook Environment.
(The Jetson Board used for these examples are => Jetson Nano)
.. raw:: html - Specifies variables of various types. .. code-block:: python # Integer Variable age = 25 # Floating-Point Variable height = 5.9 # String Variable name = "John" # Boolean Variable is_student = True # List Variable (a collection of values) fruits = ["apple", "banana", "orange"] # Tuple Variable (similar to a list but immutable) coordinates = (10, 20) # Dictionary Variable (key-value pairs) person = {"name": "Alice", "age": 30, "is_student": False} # Set Variable (a collection of unique values) grades = {90, 85, 78, 92} - Print out the various variables created. .. code-block:: python # Outputting the Values print("Integer Variable:", age) print("Floating-Point Variable:", height) print("String Variable:", name) print("Boolean Variable:", is_student) print("List Variable:", fruits) print("Tuple Variable:", coordinates) print("Dictionary Variable:", person) print("Set Variable:", grades)