以下实例实现打印 hello world 另扩展几个简单的格式化输出样例
# _*_ coding:utf-8 _*_
#这是一个注释 该实例输出 hello wold
print("hello world!")
#接下来是扩展 初步实现交互
name=input("请输入姓名:\r\n")
#格式化输出
#输出形式一:旧的输出形式
print("hello %s" %name)
#输出形式二:新的输出形式
print("hello {}".format(name))
print("hello {0} {1}".format(name,"小红"))
#如果格式化输出中包含关键字,可以不按照顺序,python会自动按照关键字进行匹配
print("hello {xiaoming} {0} ".format("小红",xiaoming=name))