Perl“
..
for ( qw( foo bar barbar baz bazbaz bletch ) ) { print "$_\n" if /ar.a/ .. /az\w/; }
输出:
barbar baz bazbaz
我所知道的Python解决方法包括列表理解和在
enumerate