fork download
  1. height =1.75
  2. username = '小明'
  3. is_student = True
  4. print(type(height))
  5. print(type(username))
  6. print(type(is_student))
Success #stdin #stdout 0.07s 14144KB
stdin
Standard input is empty
stdout
<class 'float'>
<class 'str'>
<class 'bool'>