Home » Programming Language (coding) » Python MCQs » What will be the output of the following Python code?What will be the output of the following Python code?1 Comment Mr. Answer What will be the output of the following Python code? >>> a={5,4} >>> b={1,2,4,5} >>> a<b A. {1,2}B. True C. FalseD. Invalid operation Answer: B. True Discussion Board: Uttam Kumar January 9, 2022 at 6:48 pm Reply >>> a={5,4} >>> b={1,2,4,5} >>> a<b Take Part in Discussion: Cancel replyYour email address will not be published. Required fields are marked *Name * Email * Website Comment * Save my name, email, and website in this browser for the next time I comment. Solve : * 6 × 22 =
>>> a={5,4}
>>> b={1,2,4,5}
>>> a<b