LoginSignup
0
0

More than 1 year has passed since last update.

はじめに

移植やってます

setattr (Python)

for attr in ['delimiter', 'label', 'block_size', 'label_group']:
    if attr in kwargs:
        setattr(self, attr, kwargs.pop(attr))
        self.attr = kwargs.pop(attr)

selfの属性を設定。

eval (Ruby)

['delimiter', 'label', 'block_size', 'label_group'].each do |attr|
  if kwargs.include?(attr)
    eval("@#{attr} = #{kwargs.delete(attr)}")
  end
end

無理矢理感が凄いんですけど。

メモ

  • Python の setattr を学習した
  • 道のりは遠そう
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