Question

Jorge is using Python 3 as a calculator. Jorge wants to find the product of 321 and 408. What should Jorge type? (1 point)
print 321 x 408 print 321 x 408 print (321 times 408) print (321 times 408) print 321(408) print 321(408) print (321 * 408)

Answers

GPT 3.5
Jorge should type:

print(321 * 408)

Related Questions