python-02

简介: python-02

while 循环
flag = True # 标志位
while flag:

print("123")
print("123")
print("777")
flag = False
print("结束了?")
print("5675")

代码全部执行完,再回到头部判断条件
count = 1
while count <= 3:

username = input('请输入用户名: ')
password = input('请输入密码: ')
code = 'qwer'
your_code = input('验证码:')
if your_code == code:
    if username == 'alex' and password == '123':
        print('登陆成功')
    else:
        print('用户名或密码错误')
else:
    print('验证码错误')
count +=1

格式化输出

制作一个公共的模板

让一个字符串的某些位置变成动态可传入的。

格式化输出

name = input('请输入你的姓名:')
age = input('请输入你的年龄:')
job = input('请输入你的工作:')
hobby = input('请输入你的爱好:')

% 占位符 s --> str d i r

msg = '''------------ info of %s -----------
Name : %s
Age : %d
job : %s
Hobbie: %s
------------- end -----------------''' % (name, name, int(age), job, hobby)
print(msg)

坑:在格式化输出中,% 只想表示一个百分号,而不是作为占位符使用

bjk = '我叫%s,今年%s,学习进度1%%' % ('太白金星', 18)
print(bjk)

break :循环中遇到break 直接退出循环
练习

输出1~100的所有数字

i = 0
while i < 100:

print(i+1)
i += 1

1 + 2 + 3 + ~~~ +100 的最终结果

j = 1
sum = 0
while j <= 100:

sum += j
if j == 100:
    print("sum:%d" % (+sum))
j += 1

2

k = 1
sum1 = 0
while k <= 100:

sum1 += k
k += 1

print(sum1)

打印所有1~100的偶数:

b = 1
while b <= 100:

if b % 2 == 0:
    print(b)
b += 1

count = 2
while True:

count += 2
print(count)
if count == 102:
    break

continue 相当于到了while循环的底部 continue以下的代码不会执行
进出本次循环,继续下一次循环
while True:

print(222)
print(111)
continue
print(333)

while else: while 循环如果被break打断,则不执行else语句。

while else: while 循环如果被break打断,则不执行else语句。

count =1
while count < 5:

print(count)
count += 1

else:

print(666)

运算符:
1.算数运算符 + -
2.比较运算符 > ==
3.赋值运算符 =
4.逻辑运算符 and or
5.成员运算符
逻辑运算符
and 两真则真
or 一 真则真
not 非 取反
1.在没有()的情况下,优先级 not > and > or ,
1.两边都是比较运算 同一优先级从左至右依次计算
2.两边都是整数,
x or y ,x 为真, 值就是x ,x为假,值是y
x and y, x为真,值是y,x为假,值是x

相关文章
|
6月前
|
机器学习/深度学习 数据挖掘 开发工具
Python100天:01.初识python
【4月更文挑战第7天】Python100天:01.初识python
87 1
Python100天:01.初识python
|
2月前
|
数据挖掘 Python
Python9
在进行数据分析与挖掘时,Python 自带的库可能不足以满足所有需求,因此需要引入第三方库来增强功能。常用的安装方式如表2-3所示,其中pip命令是最常见的安装方法,直接使用&quot;pip install 库名&quot;即可安装,但在国内可能会遇到下载速度慢或网络中断的问题。通过配置国内源,如清华源,使用命令 &quot;pip install 库名 -i 源地址&quot;,能够显著提升下载速度。
26 0
|
2月前
|
自然语言处理 API Python
10-14|Python处理脏话
10-14|Python处理脏话
|
3月前
|
Python
Python 中的 self 是什么?
【8月更文挑战第29天】
238 5
|
3月前
|
数据库 Python
Python 3.9,来了!
Python 3.9,来了!
|
3月前
|
数据采集 机器学习/深度学习 人工智能
Python适合做什么?
【8月更文挑战第17天】Python适合做什么?
30 8
|
3月前
|
存储 Python
Python中的m.n
Python中的m.n
|
3月前
|
Python
Python中的and or not
Python中的and or not
|
3月前
|
索引 Python
干货!20个Python使用小技巧
干货!20个Python使用小技巧
|
4月前
|
算法 IDE 程序员
python指南
【7月更文挑战第7天】python指南
42 3
下一篇
无影云桌面