LoginSignup
0
0

More than 1 year has passed since last update.

はじめに

移植やってます

for (Python)

for item in (1, 10, 2):
    if item is not None:
        break
print(item)

見た瞬間、itemって未定義?と思いましたが、ちゃんと数値を返します。

for (Ruby)

for item in [1, 10, 2]
  break if !!item
end
puts item

item = [3, 10, 2].find{ !!_1 }
puts item

Rubyはそんなことないだろうと思っていましたが、ちゃんと数値を返します。
普段、forって使用しませんので思い込みでした。

メモ

  • Python の for を学習した
  • 道のりは遠そう
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0