Values like True are called conditions. Statements relying on conditions are called conditionals.
True
Conditions decide if the code runs or gets skipped. They come in between if and the colon :.
if
:
if True: print("Hello")