python知识点

Posted 274831730wang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python知识点相关的知识,希望对你有一定的参考价值。

while循环

while True:
     content = input(请输入,输入Q退出)
     if content == Q:
         #退出程序,打断循环
         break  #直接跳出循环
     print("", content)
# 最多三次
count = 1  # 次数
while count <= 3:
    # count = 1 死循环
    content = input("内容")
    print(, content)
    # 改变计数
    count = count + 1
# continue
# while True:
#     content = input(‘请输入,输入Q退出‘)
#     if content == ‘‘:
#         continue  # 停止当前本次循环,继续执行下次循环,不会彻底中断循环
#     if content == ‘Q‘:
#         # 退出程序,打断循环
#         break  # 直接跳出循环
#     print("说", content)

# 能够让循环退出:1.break 2.改变条件
# break 彻底中断循环
# 让程序从1到100
count = 1
while count <= 100:
    print(count)
    count = count + 1

#计算1到100的和
# sum = 0
# count = 1
# while count <= 100:
#     sum = sum + count  # 累加运算
#     count = count + 1
#     print(sum)

#1-100的奇数
# count = 1
# while count <= 100:
#     if count % 2 == 1:
#         print(count)
#         count = count + 1

格式化输出

name=input(名字)
address=input(地址)
wife=input(老婆)
notlike=input(不喜欢)
#格式化输出
print("我叫%s,我来自%s,我老婆%s,我不喜欢%s" %(name,address,wife,notlike))
#新版本格式化输出
print(f"我叫{name},我来自{address},我老婆{wife},我不喜欢{notlike}")

# %s表示字符串的占位,全能的占位
# %d 占位数字,只能放数字
# 如果使用了格式化输出,%就是占位,如果想显示正常的%  %%转义

 

 

# and:并且,左右两端同时为真,结果才能为真
# or:或者,左右两端有一个是真,结果就是真
# not:非,非真既假,非假既真
# 混合运算
# 运算顺序:() > not > and > or
# 出现相同的从左往右算

#当出现x or y的时候,判断x是否是0 如果x==0 then y 否则返回x
#当出现x and y的时候,和or相反
#flase 当成0看

#成员判断
# content = input(‘请输入你的评论:‘)
# if ‘马化腾‘ in content: # content中是否包含XXX
#     print(‘你的评论不合法‘)
# else:
#     print(‘合法的‘)

# ad = input(‘请输入你的评论:‘)
# if ‘最‘ in ad or ‘全球‘ in ad or ‘第一‘ in ad:
#    print(‘不合法‘)
# else:
#     print(‘合法‘)

 

以上是关于python知识点的主要内容,如果未能解决你的问题,请参考以下文章

android小知识点代码片段

常用python日期日志获取内容循环的代码片段

python 有用的Python代码片段

Python 向 Postman 请求代码片段

python [代码片段]一些有趣的代码#sort

使用 Python 代码片段编写 LaTeX 文档