(Python) Write an expression that prints 'You must be rich!' if the variables young and famous are both True. Sample output with inputs: 'True' 'True' You must be rich!

Answer :

frazer380

Answer:

young = True

famous = True

if young == True and famous == True:

   print("You must be rich!")

Explanation:

Other Questions