221k views
3 votes
Someone plz Help I am desperate.

Someone plz Help I am desperate.-example-1

1 Answer

7 votes

It would help if there is a programming language in the context of which you need this answered. For instance in Python you can create a program like this:

print(type("Hello"))

print(type(1337))

print(type(True))

print(type("3.14"))

It will return:

<class 'str'>

<class 'int'>

<class 'bool'>

<class 'str'>

User Teocomi
by
8.2k points