0
How to type ("hi")
how to type
5 Answers
+ 2
+ 1
if you want hi as output then its
print("hi")
if you want to know what type "hi" is then its
print(type("hi"))
+ 1
type("hi")
gives <class "str">
as output the type of the object you are checking
+ 1
You typed man, congratulations
0
print('hi')
print(type('hi')
output
hi
type hi