/ Published in: Python
How to check data type. Test it in interactive mode.
Expand |
Embed | Plain Text
# This is a string. c = "Hello World" # And this is an integer. e = 23 # We can check with the function type type(c) type(e)
You need to login to post a comment.
