def czy_mniejsza_od_10(liczba): if liczba < 10: return True else: return False x = 7 print(str(czy_mniejsza_od_10(7)))