3.def tell_truth(): True = False if True == False: print("I have lost faith in truth!")Ausgabe (< 3.x):>>> tell_truth() I have lost faith in truth!💡 Erklärung:bool ist eine Unterklasse von int in Python >>> issubclass(bool, int) True >>> issubclass(int, bool) ...