Shorten template with list?

have this template:

  - condition: template
    value_template: >
      {{trigger.to_state in ['group.daughter1', 'group.daughter2', 'group.daughter3',
                            'group.daughter4', 'group.wife'] and 
                            trigger.to_state.state == 'home'}}

can this be shortened to:

  - condition: template
    value_template: >
      {{trigger.to_state in 'group.' + ['daughter1', 'daughter2', 'daughter3',
                            'daughter4', 'wife'] and 
                            trigger.to_state.state == 'home'}}