list([i for i in range(1,101) if i%2==0]) と書くと list() に渡されるリストのコピーが生じて若干オーバヘッドがあるので、単に sum([i for i in range(1,101) if i%2==0]) と書いたほうが(文字数的な意味でも)良さそう
You can add location information to your Tweets, such as your city or precise location, from the web and via third-party applications. You always have the option to delete your Tweet location history. Learn more
list([i for i in range(1,101) if i%2==0]) と書くと list() に渡されるリストのコピーが生じて若干オーバヘッドがあるので、単に sum([i for i in range(1,101) if i%2==0]) と書いたほうが(文字数的な意味でも)良さそう