i) 20 and 20.0 # Yes
(ii) 20 and int(20) # Yes
(iii) str(20) and str(20.0) # No becuase str(20.0) is equal to ‘20.0’
(iv) ‘a’ and “a” # Yes
i) 20 and 20.0 # Yes
(ii) 20 and int(20) # Yes
(iii) str(20) and str(20.0) # No becuase str(20.0) is equal to ‘20.0’
(iv) ‘a’ and “a” # Yes