博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
pyhton随笔02
阅读量:5012 次
发布时间:2019-06-12

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

一、如何实现输入密码时不可见?

import getpass

pwd= getpass.getpass(“请输入密码:")

(pycharm内可能不可用)

 

二、if.....else

age=25

guess_age = int(input('你猜我多少岁?')) #python3.X 中input的是一个str,需要int()

if guess_age == age:

  print('Yes,you got it!')

elif guess_age > age:

  print('think smaller')

else :

  print('think bigger')

 

三、while

count = 0

while True:

  print(‘count:’,count)

  count = count +1

#guess age

age=25

count = 0

while count < 3:

  guess_age = int(input('你猜我多少岁?'))

  if guess_age == age:

    print('Yes,you got it!')

  elif guess_age > age:

    print('think smaller')

  else :

    print('think bigger')

  count +=1

  if count ==3:

    continue_confirm = input('Do you want to continue?':)

      if continue_confirm != "n":

        count = 0

#else:

#  print('you have try too many times')

 

三、for循环

for i range(10):

  print(”loop:“,i)

 

for i range(0,10,3):#从0开始,到10结束,步长为3

  print(”loop:“,i)

 

#guess age

age=25

count = 0

for i in range(3):

  guess_age = int(input('你猜我多少岁?'))

  if guess_age == age:

    print('Yes,you got it!')

  elif guess_age > age:

    print('think smaller')

  else :

    print('think bigger')

  count +=1

else:

  print('you have try too many times')

 

#! usr/bin/env python # encoding:utf-8 # __author__="Macal" ''' for i in range(0,10):     if i < 5:         print("loop",i)     else:         continue     print('hehe') ''' for i in range(10):     print('----------', i)     for j in range(10):         print(j)         if j > 5:             break #结束当前循环

 

转载于:https://www.cnblogs.com/Macal/p/6753038.html

你可能感兴趣的文章
CRC标准以及简记式
查看>>
SEO搜索引擎
查看>>
关于本地使用tomcat部署web应用,浏览器自动跳转为https的问题
查看>>
一、Text To Speech
查看>>
Java读取并下载网络文件
查看>>
github上构建自己的个人网站
查看>>
在word中粘贴的图片为什么显示不完整
查看>>
SQL Server 数据库的鼠标操作
查看>>
net软件工程师求职简历
查看>>
总线置顶[置顶] Linux bus总线
查看>>
nullnullHandling the Results 处理结果
查看>>
SQL SERVER BOOK
查看>>
JS基础回顾,小练习(判断数组,以及函数)
查看>>
多任务——进程
查看>>
WCF:如何将net.tcp协议寄宿到IIS
查看>>
WebAPI HelpPage支持area
查看>>
Path元素
查看>>
php_soap扩展应用
查看>>
第二百三十一节,Bootstrap 介绍
查看>>
vi/vim 三种模式的操作
查看>>