在R中!实际上是一个中缀运算符`!`,所以像
这样的语句Map(`!`,c(T,F,F))
完全有效。有没有办法访问不在Python中的第一个订单对象?我一直在谷歌搜索没有成功。
答案 0 :(得分:6)
Python有operator
module,其中包含operator.not_()
function:
http://192.168.1.101
import operator
map(operator.not_, (True, False, False))
本身就是boolean operators之一。