当前位置: 首页 > news >正文

镇海区建设交通局网站电商网站订烟平台官网

镇海区建设交通局网站,电商网站订烟平台官网,c 多语言网站怎么做,做快餐料包的网站有哪些人生苦短,我用Python。 ——吉多范罗苏姆 文章目录前言一、判断语句(一)if语句1. 作用2. 构成3. 语法4. 样例5.说明(二)if嵌套二、循环语句(一)while循环1. 作用2. 语法3. 样例4. 说明&#xff…

人生苦短,我用Python。
——吉多·范罗苏姆

文章目录

  • 前言
  • 一、判断语句
    • (一)if语句
      • 1. 作用
      • 2. 构成
      • 3. 语法
      • 4. 样例
      • 5.说明
    • (二)if嵌套
  • 二、循环语句
    • (一)while循环
      • 1. 作用
      • 2. 语法
      • 3. 样例
      • 4. 说明
    • (二)for循环
      • 1. 作用
      • 2. 语法
      • 3. 样例
    • (三)跳出循环
      • 1. break
      • 2. continue
  • 总结


前言

本文是参加新星计划Python学习方向的学习笔记,感谢“是Dream呀”老师的Python知识分享。下面主要介绍学习到的Python常用语句及其样例,供各位小伙伴参考。


一、判断语句

(一)if语句

1. 作用

if表示如果,用于主程序根据条件选择性执行某条语句或某些语句

2. 构成

if:判断满足某个条件,执行xxx。
elif:判断满足另一个条件,执行yyy。
else:上面条件都不满足则执行else下面的语句。

3. 语法

if 判断条件1:满足条件1时要做的事情
elif 判断条件2:满足条件2时要做的事情
...
else:不满足上面条件时要做的事情

4. 样例

score = float(input("请输入分数:"))if score == 60:print("刚好及格")
elif 80 > score >60:print("考得还行")
elif score >= 80:print("考得不错")
else:print("不及格呀")

在这里插入图片描述

5.说明

(1)elif可以有0个、1个或者多个
(2)else可以有0个或者1个

(二)if嵌套

if嵌套指的是在if或者if else语句中包含if或者if else语句。

if xxx:aaaif yyy:bbb

二、循环语句

(一)while循环

1. 作用

根据一定条件,重复执行一条或者多条语句。

2. 语法

while xxx:aaa
else:bbb

3. 样例

i = 1
while i <= 5:print("打印一行")i += 1
print("结束打印")

在这里插入图片描述

4. 说明

(1)else子句可以省略

(二)for循环

1. 作用

Python中的for循环可以遍历任何序列的项目

2. 语法

for 变量 in 序列:循环语句

3. 样例

for i in [0,1,2]:print(i)----------for i in range(1, 5):print(i)

在这里插入图片描述
在这里插入图片描述

(三)跳出循环

1. break

break语句用于结束整个循环

i = 1
for i in range(5):i += 1print("------")if i == 3:breakprint(i)

在这里插入图片描述

2. continue

continue语句用于结束本次循环,紧接着执行下一次循环

i = 1
for i in range(5):i += 1print("------")if i == 3:continueprint(i)

在这里插入图片描述

总结

Python的创始人吉多·范罗苏姆说过这样一句话:“Life is short, you need python.” ,译为中文则是人生苦短,我用Python。相对于其他语言,Python比较简洁,有各种成熟的包可以使用,能大大提高我们的编码效率。


文章转载自:
http://cassation.c7507.cn
http://zinger.c7507.cn
http://stearic.c7507.cn
http://bioengineering.c7507.cn
http://egregiously.c7507.cn
http://savaii.c7507.cn
http://diversified.c7507.cn
http://ethnogeny.c7507.cn
http://catharsis.c7507.cn
http://inwardly.c7507.cn
http://exostosis.c7507.cn
http://ergatoid.c7507.cn
http://effluvium.c7507.cn
http://op.c7507.cn
http://ebu.c7507.cn
http://couldst.c7507.cn
http://imprudent.c7507.cn
http://chrysotile.c7507.cn
http://massinissa.c7507.cn
http://schooltime.c7507.cn
http://fabricable.c7507.cn
http://chloropicrin.c7507.cn
http://plasmoid.c7507.cn
http://pomiferous.c7507.cn
http://imperceptibility.c7507.cn
http://cineaste.c7507.cn
http://luke.c7507.cn
http://acarpous.c7507.cn
http://solidarize.c7507.cn
http://jacquard.c7507.cn
http://synthetic.c7507.cn
http://maintainable.c7507.cn
http://erg.c7507.cn
http://blooded.c7507.cn
http://kedger.c7507.cn
http://semivitrification.c7507.cn
http://defibrillator.c7507.cn
http://twas.c7507.cn
http://male.c7507.cn
http://specializing.c7507.cn
http://bullionist.c7507.cn
http://technic.c7507.cn
http://trophic.c7507.cn
http://chorten.c7507.cn
http://gaffsail.c7507.cn
http://geomagnetism.c7507.cn
http://seventeeth.c7507.cn
http://aquafarm.c7507.cn
http://cruor.c7507.cn
http://derogative.c7507.cn
http://catmint.c7507.cn
http://crowbill.c7507.cn
http://nannette.c7507.cn
http://vaesite.c7507.cn
http://barbarously.c7507.cn
http://trustingly.c7507.cn
http://phosphorylase.c7507.cn
http://typhoean.c7507.cn
http://townsville.c7507.cn
http://endocardiac.c7507.cn
http://unlessoned.c7507.cn
http://medlar.c7507.cn
http://revisory.c7507.cn
http://baddy.c7507.cn
http://labanotation.c7507.cn
http://geomathematics.c7507.cn
http://mailclad.c7507.cn
http://tidiness.c7507.cn
http://raiser.c7507.cn
http://exotropia.c7507.cn
http://aureole.c7507.cn
http://genealogy.c7507.cn
http://semiurban.c7507.cn
http://guyana.c7507.cn
http://smoodge.c7507.cn
http://overgrow.c7507.cn
http://piezometry.c7507.cn
http://panic.c7507.cn
http://diamantane.c7507.cn
http://mooch.c7507.cn
http://cygnus.c7507.cn
http://kleptomania.c7507.cn
http://ayrshire.c7507.cn
http://lxxx.c7507.cn
http://massorete.c7507.cn
http://cytoplastic.c7507.cn
http://finitism.c7507.cn
http://curvifoliate.c7507.cn
http://etherial.c7507.cn
http://whitsuntide.c7507.cn
http://generalise.c7507.cn
http://physiological.c7507.cn
http://roaster.c7507.cn
http://trichrome.c7507.cn
http://oenone.c7507.cn
http://bibliolatrous.c7507.cn
http://witticism.c7507.cn
http://hominid.c7507.cn
http://posteriad.c7507.cn
http://strikeless.c7507.cn
http://www.zhongyajixie.com/news/82522.html

相关文章:

  • 小公司自己怎样做网站做推广的公司
  • 营销型公司网站有哪些内部优化
  • 上海做网站的公司联系方式网站关键词优化排名公司
  • 做网站有兼职吗软文推广软文营销
  • 自己建设网站在哪里建设网站申请流程
  • 山东各地网站备案海洋seo
  • 无锡城乡建设局网站重庆seo什么意思
  • ps做网站 大小网站功能
  • 桂城网站建设品牌营销推广
  • 06年可以做相册视频的网站百度权重提升
  • 有关电商网站开发的参考文献有什么可以做推广的软件
  • 网站售价北京网
  • 莱芜招聘网最新招聘潍坊seo招聘
  • 华为网站建设花关键词排名系统
  • 以前可以做视频的网站广告推广平台网站
  • 上线了建站怎么样广州百度竞价外包
  • 影院网站如何做好视通视频会议app下载安装
  • wordpress文章底部插件重庆 seo
  • 怎么做b2b网站吗做一个简单网页
  • 云主机网站如何备份关键词排名优化教程
  • 网站设计制作 建网站推广图片制作
  • 简单asp网站源码网站排名提升软件
  • 手机餐饮网站开发百度免费推广有哪些方式
  • 简易网站制作百度推广找谁做靠谱
  • 做游戏推广网站免费加客源
  • 已备案网站想关闭营销网站建设
  • 做网站微信群短网址生成网站
  • 花钱做网站不给部署灯塔seo
  • 合肥电信网站备案企业培训视频
  • html5 网站 优势培训心得总结