[lang-ref] ( comparison_operator_greater_than_or_equal ) ( python )

def test_comparison_operator_greater_than_or_equal():
    # >=    
    assert 2 >= 1
    assert 'b' >= 'a'