Python 2, 56 bytes
lambda s:all(set(x)&set(s)for x in"e to for si".split())
Take inputs like two four, outputs negated. Checks whether the string has an e, and intersects the non-e numbers of two, four, and six.
52 bytes in Python 3 using {*x} for set(x).
Python 2, 56 bytes
lambda s:all(set(x)&set(s)for x in"e to for si".split())
Take inputs like two four, outputs negated. Checks whether the string has an e, and intersects the non-e numbers of two, four, and six.
Python 2, 56 bytes
lambda s:all(set(x)&set(s)for x in"e to for si".split())
Take inputs like two four, outputs negated. Checks whether the string has an e, and intersects the non-e numbers of two, four, and six.
52 bytes in Python 3 using {*x} for set(x).