博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python
阅读量:5775 次
发布时间:2019-06-18

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

and运算符就是所谓的布尔运算符,连接两个布尔值,并且在两者都为真时返回真,否则 返回假,or not 可以随意结合真值

短路逻辑 short-circuit logic   惰性求值 lazy evaluation
raw_input 返回值为真
断言,条件后可以添加字符串,用来解释断言
x = 1
Yes = input('Are you readly?')
if Yes.lower() == 'yes':
    while x <= 'yes':
        print(x)
        x += 1

缩进对Python 太重要了!

name = ''

while not name:
    name = input('Please enter your name: ')
print('Hello,%s!' % name)

Name = input('Please input you name: ')

name = Name
while not name or name.isspace():
    #while not name.strip() or while not name or name.isspace()
    #
    name = input('Please enter your name: ')
print('Hello,%s!'% name)

# sequence list   words = ['this','is','an','ex','parrot']

#for word in words:
#    print(word)
"""
numbers = [0,1,2,3,4,5,6,7,8,9]
for number in numbers:
    print(number)
"""
'''
d = {'x':1,'y':2,'z':3}
for key in d:
    print(key,'corresponds to',d[key])
#multiline commit  for python
#one line commeit for Python
'''
'''
d = {'x':1,'y':2,'z':3}
print(d[key])
#for key in d:
#    print(d[value])
'''
'''
d = {'x':1,'y':2,'z':3}
for key,value in d.items():
    print(key,'correspond to',value)
    
'''
"""
names = ['anne','beth','george','damon']
ages = [12,45,32,102]
for i in range(len(names)):
    print(names[i],'is',ages[i],'years old')
for string in strings:
    if 'xxx' in string:
        index = strings.index(string) # Search for the string in the list of strings
        strings[index] = '[censored]'
"""
for string in srings:
    if 'xxx' in string:
        index = strings.index(string)
        strings[index] = '[censored]'

 

posted on
2015-12-28 18:17 阅读(
...) 评论(
...)

转载于:https://www.cnblogs.com/ruiy/p/5083403.html

你可能感兴趣的文章
JAVA进阶-注解
查看>>
三元表达式之理解/jquery源代码分析之$.inArray实现
查看>>
STM32 mdk软件仿真时过不去时钟的问题
查看>>
Spark Streaming概念学习系列之Spark Streaming容错
查看>>
单例模式
查看>>
老旧的金融机构,是时候赶赶云计算的时髦了
查看>>
用友网络陈强兵:企业互联网需解决五大问题
查看>>
SMA推出Powerwall兼容Sunny Boy Storage逆变器
查看>>
云路由 vyatta 体验(二)NAT
查看>>
Python version 2.7 required, which was not foun...
查看>>
centos7.3 下安装 composer,解决Failed to decode zlib stream错误
查看>>
Git 常用命令
查看>>
在Postgres 数据库中生成36位的UUID代码
查看>>
小黑小波比.功能测试登录用户
查看>>
Java enum用法详解
查看>>
去云端的多条途径
查看>>
Docker容器从一知半解到入门
查看>>
关于“方法参数”
查看>>
Redis命令总结
查看>>
unable to write 'random state'错误解决
查看>>