Try to answer the following question without running the code in Python: If we run the following line: y = int(3 * '4') what is the value of $y$?

Respuesta :

Answer:

444.

Step-by-step explanation:

The '4' is considered to be a string so if you print y you would get 444.  The int  means 'integral, ( I believe).