Home / Questions / Other Python में multiple conditions के लिए elif कैसे लिखते हैं? — interview में इसका सही जवाब क्या है? Other 0 Views Verified Python में multiple conditions के लिए elif कैसे लिखते हैं? — interview में इसका सही जवाब क्या है? #python #python programming #coding #developer Sarkari Result QA Bank Editorially reviewed exam information Share
Verified Correct Answer if x > 0: pass elif x == 0: pass else: pass if x > 0: pass elif x == 0: pass else: pass Additional Explanation Python में else-if chain के लिए elif keyword है।