标签:
今天是学习Python的第一天,主要学习了python的输入,输出以及基本配置,记录如下代码
# -*- coding: utf-8 -*- print (‘Please input your name :\n‘) name = input() print (‘Please input your money:\n‘) money= input() print ("你好: %s ,你现在有 $ %s" % (name ,money ))
标签:
原文地址:http://www.cnblogs.com/luyuxibaby/p/5127538.html