Saved Bookmarks
| 1. |
Give empty statement (python programming language) |
|
Answer» Answer: your answer is here Explanation: In Python, to write empty functions/statements, we use 'pass' statement. It really does nothing. It can be USED to AVOID compile ERRORS while WRITING an empty function. ... In empty if/else statements: # Empty in if/else in Python. condition = True. if (condition == True) : pass. else: print("FALSE") |
|