Created
January 16, 2017 04:24
-
-
Save peroon/7c2f3313686914e1042749ef80bb2616 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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