Skip to content

Instantly share code, notes, and snippets.

@peroon
Created January 16, 2017 04:24
Show Gist options
  • Select an option

  • Save peroon/7c2f3313686914e1042749ef80bb2616 to your computer and use it in GitHub Desktop.

Select an option

Save peroon/7c2f3313686914e1042749ef80bb2616 to your computer and use it in GitHub Desktop.
list0 = []
list1 = [1,2,3]
if list0:
print 'list0' #長さ0なのでFalse扱いで実行されない
if list1:
print 'list1'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment