num.map({(a:Int)->String in a>60 ? "不及格":"及格"})
请参考5-2的1:44前后。这里说的是参数类型Int和返回值类型Bool都是冗余的,可以不写。言外之意就是进入一定是Int,返回一定是Bool而不是String。