请用程序实现
使用变量(括号内的单词)存储以下MP3信息(冒号后的信息):
品牌(brand):爱国者 F928
重量(weight):12.4
电池类型(types):内置锂电池
价格(price):499
代码:
#请将MP3信息保存到变量中
brand="爱国者 F928"
weight=12.4
types="内置锂电池"
price=499
print("品牌(brand):"+format(brand))
print("重量(weight):"+format(weight))
print("电池类型(types):"+types)
print("价格(price):"+format(price))