理解并掌握:type类型。本课不是占位内容,示例和练习都围绕这个知识点。
x = 100 print(type(x)) y = '100' print(type(y))
请根据本课知识,自己写一段包含检查点的代码。
检查点:print, ty