码迷,mamicode.com
首页 > 编程语言 > 详细

python Day01

时间:2017-07-07 18:14:59      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:color   name   welcome   password   语句   mat   user   usr   pytho   

练习:

 

变量赋值、交互式输入、if语句简单使用。

 

例子:

 

#!/usr/bin/env python
# -*- coding:utf-8 -*-
# Author Jean

name = "jean"
passd = "123456"

username = input("username: ")
password = input("password: ")

if username == name and password == passd:
print("Welcome {name} login".format(name=username))
else:
print("Invaild user or password...")




python Day01

标签:color   name   welcome   password   语句   mat   user   usr   pytho   

原文地址:http://www.cnblogs.com/liuyibai/p/7133436.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!