38.9k views
13 votes
PLEASE QUICK IM TIMED.

Write a program that assigns the value 14 to a variable. Then print out the type of the variable. What will the output of the program be?

User Nannerpus
by
3.5k points

1 Answer

10 votes

This is for Python

Code:

variable = 14

print(type(variable))

Output:

<class 'int'>

User Walla
by
3.2k points