62 Program to demonstrate Boolean function in Python Atharva Satyendra Agrawal March 27, 2020 Atharva Satyendra Agrawal Program: #Boolean function:function which returns either True/false x=20 y=10 def f1(): if(x>y): return True else: return False p=f1() print(p) Output: Tweet Share Share Share Related Post