- print(type(x))
- print(typeof(x))
- print(typeof x)
- print(typeOf(x))
Write your answer in comment
Write your answer in comment
For further actions, you may consider blocking this person and/or reporting abuse
Timescale Cloud is PostgreSQL optimized for speed, scale, and performance. Over 3 million IoT, AI, crypto, and dev tool apps are powered by Timescale. Try it free today! No credit card required.
Luca Liu -
Luca Liu -
Harith Javed Bakhrani -
kamran -
Top comments (9)
Well, obviously you could use
print(type(x))
, but that's not very useful, sincetype
doesn't return a string but a class, and then print will callstr()
on it, so you typically and up with therepr()
of the class:What you can do is hit the introspection bits, for example:
Which is a bit prettier.
str.join() takes exactly one argument (3 given) :)
Nice catch - I edited to pass in a tuple rather than the args directly.
Thanks for the demonstration that good code review is important!
print(type(x))
print(type(x))
1
The correct answer is the answr number one
1
print(type(x))