What function do we need to use to add an integer and a float together?

None - Python will convert the integer to a float automaticallyFirst use float() on the integerUse float() on the result

None - Python will convert the integer to a float automatically.