Skip to content

Instantly share code, notes, and snippets.

@rdnasim
Last active February 2, 2018 11:20

Revisions

  1. rdnasim revised this gist Feb 2, 2018. No changes.
  2. rdnasim created this gist Feb 2, 2018.
    4 changes: 4 additions & 0 deletions if_else.py
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,4 @@
    if 1 > 2:
    print("1 is greater than 2")
    else:
    print("1 is not greater than 2")