# coding:utf-8
math = '98'
english = 99
# python 不是所有的变量类型都是相同的
# 不同的数据类型是不能进行相关的操作的
# total = math + english
print (type (math))
# coding:utf-8
math = '98'
english = 99
# python 不是所有的变量类型都是相同的
# 不同的数据类型是不能进行相关的操作的
# total = math + english
print (type (math))