Introduction
In this lab, you need to create a function that accepts two integer arguments and checks if they are equal or not, returning True
if they are equal and False
otherwise.
Skills Graph
%%%%{init: {'theme':'neutral'}}%%%%
flowchart RL
python(("Python")) -.-> python/BasicConceptsGroup(["Basic Concepts"])
python(("Python")) -.-> python/ControlFlowGroup(["Control Flow"])
python(("Python")) -.-> python/FunctionsGroup(["Functions"])
python/BasicConceptsGroup -.-> python/booleans("Booleans")
python/ControlFlowGroup -.-> python/conditional_statements("Conditional Statements")
python/FunctionsGroup -.-> python/arguments_return("Arguments and Return Values")
subgraph Lab Skills
python/booleans -.-> lab-108246{{"Check Equality of Two Integers"}}
python/conditional_statements -.-> lab-108246{{"Check Equality of Two Integers"}}
python/arguments_return -.-> lab-108246{{"Check Equality of Two Integers"}}
end