Every line of 'python if else shorthand' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your Python code is secure.
635 def p_if_then_else_statement_no_short_if(self, p): 636 '''if_then_else_statement_no_short_if : IF '(' expression ')' statement_no_short_if ELSE statement_no_short_if''' 637 p[0] = IfThenElse(p[3], p[5], p[7])
100 def test_if_else_extended(snippetcompiler): 101 snippetcompiler.setup_for_snippet( 102 """ 103 entity Test: 104 string field 105 string field2 106 end 107 implement Test using std::none 108 109 entity A: 110 string a = "" 111 end 112 implement A using std::none 113 114 test = Test() 115 a = A(a="a") 116 117 if a.a == "b": 118 test.field = "substitute" 119 test.field2 = "substitute2" 120 else: 121 test.field = "alt" 122 test.field2 = "alt2" 123 end 124 """ 125 ) 126 (_, scopes) = compiler.do_compile() 127 root = scopes.get_child("__config__") 128 test = root.lookup("test").get_value() 129 assert "alt" == test.lookup("field").get_value() 130 assert "alt2" == test.lookup("field2").get_value()
229 def else_body(self, elsewhat): 230 if elsewhat: 231 self.write(self.newline, 'else:') 232 self.body(elsewhat)
93 def enterIf_else(self, ctx:TinyPyParser.If_elseContext): 94 pass
295 def p_else_statement(p): 296 ''' 297 else_statement : ELSE statement 298 ''' 299 p[0] = Node('else', children=[p[2]])
94 def stmt(IF, EXPR, THEN, stmt): pass
595 def if_else(self, cond, if_body, else_body): 596 return IfNode(self.pos, cond=cond, body=if_body, else_body=else_body)
34 def test_else_elsif(): 35 tpl = """ 36 {% if customer.name == "kevin" %} 37 Hey Kevin! 38 {% elsif customer.name == "anonymous" %} 39 Hey Anonymous! 40 {% else %} 41 Hi Stranger! 42 {% endif %} 43 """ 44 assert Liquid(tpl).render( 45 customer={"name": "anonymous"} 46 ).strip() == "Hey Anonymous!"
466 def p_if_stmt(p): 467 'if_stmt : IF test COLON suite' 468 p[0] = ast.If([(p[2], p[4])], None)
340 def if_statement(self, cond, true, false=[]): 341 return IfStmt(cond=cond, true=true, false=false)