Skip to content

Instantly share code, notes, and snippets.

@ryu1-1uyr
Created June 29, 2018 04:12
Show Gist options
  • Save ryu1-1uyr/7a17a896c4c51e28dd875ddcfee48c93 to your computer and use it in GitHub Desktop.
Save ryu1-1uyr/7a17a896c4c51e28dd875ddcfee48c93 to your computer and use it in GitHub Desktop.
リスト内包
N = int(input())
for o in [(i%3==0)*'Fizz' + (i%5==0)*'Buzz' or i for i in range(1, N+1)]:
print (o)
@omas-public
Copy link

そこまできたらList内包もう一個かぶせろ

print('\n'.join([o for o in [...ry]]));

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment