Check Empty or Not in Pythonname = " "if name: # condition will be true if string will not be empty print("String is not empty...")else: print("String is empty...")
Post a Comment