#-*- coding:utf-8 -*-
#让python2也能运行含中文的程序
print("hello world")applePrice = 3.5 #苹果的价格 元/斤
weight = 7.5 #购买苹果的重量 斤money = applePrice + weight#input("请输入你的身高:")high = input("请输入你的身高:") #获取用户输入的信息
print("high里的值是%s"%high)age = 15
print("age变量里的值是%d"%age)
打印名片
#1. 使用input获取必要的信息
name = input("Please enter your name:")#2. 使用print来打印名片
print("============")
print("name: %s"%name)
print("="*12) #与第5行输出相同