博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Python_day1_guess任性玩
阅读量:6595 次
发布时间:2019-06-24

本文共 2134 字,大约阅读时间需要 7 分钟。

一 : 密文密码_getpass

import getpass #密文密码 需要导入的标准库_username = 'chenqiang'_password = '123456'username = input("username :")# password = getpass.getpass("password :") //使用 getpass 方法密文password = input("password :")if _username == username and _password == password:    print('welcome user {name} login...'.format(name=username))else:    print('Invalid username or password')print('ddd')

 

二 : 输出格式

name = input("name : ")age = int(input("age : "))  # integer  raw_input = input# print(type(age), type(str(age)))  //type()打印变量类型job = input("job : ")salary = input("salary : ")print() 方法一:info = '''--------- info  of  %s ----------Name:%sAge:%dJob:%sSalary:%s''' % (name, name, age, job, salary) 方法二:info2 = '''--------- info  of  {_name} ----------Name:{_name}Age:{_age}Job:{_job}Salary:{_salary}'''.format(_name=name,           _age=age,           _job=job,           _salary=salary) 方法三:info3 = '''--------- info  of  {0} ----------Name:{0}Age:{1}Job:{2}Salary:{3}'''.format(name, age, job, salary)print(info3)

 

三: while for 循环

while True:    print('count :',count)    count += 1    if count == 1000:        break
for i in range(0,10):    if i < 3:        print('loop :',i)    else:        continue #跳出本次循环  进入下一个循环    print('呵呵')

 

四:猜数游戏

方法1: age_of_oldboy = 56count = 0while count < 3:    guess_age = int(input('guess age:'))    if guess_age == age_of_oldboy:        print('yes,you got it')        break //如果猜对了-结束    elif guess_age > age_of_oldboy:        print('think smaller!')    else:        print('think bigger!')    count += 1    if count == 3: //三次后询问是否继续        countinue_confirm = input('do you want to keep guessing..??')        if countinue_confirm != 'n':            count = 0else:    print('you have tried too many times..fuck off')
方法2: age_of_oldman = 56for i in range(3):    guess_age = int(input('guess age:'))    if guess_age == age_of_oldman:        print('yes,you got it')        break #破坏循环 else 也不走了    elif guess_age > age_of_oldman:        print('think smaller!')    else:        print('think bigger!')else:    print('you have tried too many times..fuck off')

 

转载于:https://www.cnblogs.com/chendasheng/p/8888601.html

你可能感兴趣的文章
veritas升级及备份至磁盘两个问题简要说明
查看>>
Scoket:UDP通讯模型
查看>>
扯点关于经济的淡-贸易顺差都是有利的吗
查看>>
国产IT厂商激辩微软 微软反垄断调查或有突破
查看>>
《进化——我们在互联网上奋斗的故事》一一1.4 从精兵到强将 ——技术人员的职场发展之路...
查看>>
通过 LLVM 在 Android 上运行 Swift 代码
查看>>
《HttpClient官方文档》1.7. Redirect handling 翻译
查看>>
《C程序员从校园到职场》一第2章 学校到职场2.1 认清自身不足
查看>>
jquery遍历的json有两层list时的解决方法
查看>>
Sql语句-case when then else end
查看>>
Python_编程特色
查看>>
ant打jar包
查看>>
【Android】The application has stopped unexpectedly.Please try again.
查看>>
为什么要使用Ajax
查看>>
java web开发使用伪静态
查看>>
CISCO交换机密码恢复
查看>>
我的友情链接
查看>>
有关在linux 下跑asp.net文章博客
查看>>
Linux/Unix的精巧约定两例及其简析:目录权限和文本行数
查看>>
WebDAV助手1.1.0更新
查看>>