16.9k views
3 votes
If the following code is executed, what is the output? a = 1 b = 2. c = '3' d = (1, 2., '3') e = [4, 5., '6'] print type(a)

User PHLAK
by
7.8k points

1 Answer

0 votes
int

There's no decimal point, so a is an integer.
User Aevitas
by
8.6k points

No related questions found