Fill in the blank: If you ran the following code, the output would _____.

Automate Cybersecurity Tasks with Python | Weekly challenge 1 Quiz | 

Fill in the blank: If you ran the following code, the output would _____.

var1 = 9.5
var1_type = type(var1)
print(var1_type)
  • reassign var1 as float data
  • output 9.5 to the screen
  • reassign var1 as string data
  • indicate that var1 contains float data

 

Leave a Comment