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

做网站 做app好外贸网站免费建站

做网站 做app好,外贸网站免费建站,erp管理系统的作用,网站开发人员 把网站注销目录 2.1 运行hello_world.py时发生的情况 2.2 变量 2.2.1 变量的命名和使用 2.2.2 如何在使用变量时避免命名错误 2.2.3 变量是标签 2.3 字符串 2.3.1 使用方法修改字符串的大小写 2.3.2 在字符串中使用变量 2.3.3 使用制表符或换行符来添加空白 2.3.4 删除空白 2.3.5 删除…

目录

2.1 运行hello_world.py时发生的情况

2.2 变量

        2.2.1 变量的命名和使用

        2.2.2 如何在使用变量时避免命名错误

        2.2.3 变量是标签

2.3 字符串

        2.3.1 使用方法修改字符串的大小写

        2.3.2 在字符串中使用变量

        2.3.3 使用制表符或换行符来添加空白

        2.3.4 删除空白

        2.3.5 删除前缀

        2.3.6 如何在使用字符串时避免语法错误

2.4 数

        2.4.1 整数

        2.4.2 浮点数

        2.4.3 整数和浮点数

        2.4.4 数中的下划线

        2.4.5 同时给多个变量赋值

        2.4.6 常量

2.5 注释

        2.5.1 如何编写注释

        2.5.2 该编写什么样的注释

2.6 Python之禅

2.7 小结


2.1 运行hello_world.py时发生的情况

2.2 变量

每个变量指向一个值——与该变量想关联的信息。

在程序中,可随时修改变量的值,而Python将始终记录变量的最新值。

        2.2.1 变量的命名和使用

              

        2.2.2 如何在使用变量时避免命名错误

        2.2.3 变量是标签

2.3 字符串

​​​​​​​

        2.3.1 使用方法修改字符串的大小写

使用 title() 方法:首字母大写

name = "ada lovelace"
print(name.title())
#输出Ada Lovelace

 使用 upper() 方法:字母全部大写

name = "Ada Lovelace"
print(name.upper())
#输出ADA LOVELACE

使用 lower() 方法:字母全部小写

name = "Ada Lovelace"
print(name.lower())
#输出ada lovelace

        2.3.2 在字符串中使用变量

        2.3.3 使用制表符或换行符来添加空白

        2.3.4 删除空白

确保字符串右端没有空白:rstrip() 方法(这种删除办法是暂时的)

favorite_language='python         '
print(favorite_language.rstrip())#输出'python'
print(favorite_language)#输出'python         '
favorite_language=favorite_language.rstrip()
print(favorite_language)#输出'python'

确保字符串左端没有空白:lstrip() 方法(这种删除办法是暂时的)

favorite_language='     python'
print(favorite_language.lstrip())#输出'python'
print(favorite_language)#输出'     python'
favorite_language=favorite_language.lstrip()
print(favorite_language)#输出'python'

确保字符串两端没有空白:strip() 方法(这种删除办法是暂时的)

favorite_language='     python      '
print(favorite_language.strip())#输出'python'
print(favorite_language)#输出'     python      '
favorite_language=favorite_language.strip()
print(favorite_language)#输出'python'

        2.3.5 删除前缀

使用 removeprefix() 方法(这种删除办法是暂时的)

nostarch_url='http://nostarch.com'
print(nostarch_url.removeprefix('http://'))#输出'nostarch.com'
print(nostarch_url)#输出'http://nostarch.com'
nostarch_url=nostarch_url.removeprefix('http://')
print(nostarch_url)#输出'nostarch.com'

        2.3.6 如何在使用字符串时避免语法错误

2.4 数

        2.4.1 整数

        2.4.2 浮点数

        2.4.3 整数和浮点数

1.将任意两个数相除,结果总是浮点数,即便这两个数都是整数且相除。

2.在其他任何运算中,如果一个操作数是整数,另一个操作数是浮点数,结果也总是浮点数。

        2.4.4 数中的下划线

        2.4.5 同时给多个变量赋值

        2.4.6 常量

2.5 注释

        2.5.1 如何编写注释

使用井号“#”标识。

        2.5.2 该编写什么样的注释

2.6 Python之禅

2.7 小结


文章转载自:
http://dinncodiabolo.wbqt.cn
http://dinncoinchoation.wbqt.cn
http://dinncotawie.wbqt.cn
http://dinncoepagoge.wbqt.cn
http://dinncoobtrusive.wbqt.cn
http://dinncoblastula.wbqt.cn
http://dinncoudder.wbqt.cn
http://dinncocivilization.wbqt.cn
http://dinncodocumentalist.wbqt.cn
http://dinncocoupling.wbqt.cn
http://dinncosubtrahend.wbqt.cn
http://dinncoconflate.wbqt.cn
http://dinncoineluctability.wbqt.cn
http://dinncoturista.wbqt.cn
http://dinncolaryngoscope.wbqt.cn
http://dinncobutene.wbqt.cn
http://dinncohallah.wbqt.cn
http://dinncotrifocal.wbqt.cn
http://dinncodeferred.wbqt.cn
http://dinncookey.wbqt.cn
http://dinncopauper.wbqt.cn
http://dinncocosmonette.wbqt.cn
http://dinncopushpin.wbqt.cn
http://dinncobrasserie.wbqt.cn
http://dinncotwig.wbqt.cn
http://dinncoirksomely.wbqt.cn
http://dinncoprincesse.wbqt.cn
http://dinncopaint.wbqt.cn
http://dinncourdu.wbqt.cn
http://dinncodissolving.wbqt.cn
http://dinncoweeknight.wbqt.cn
http://dinncoisentropic.wbqt.cn
http://dinncoplumage.wbqt.cn
http://dinncopostpaid.wbqt.cn
http://dinncoleukon.wbqt.cn
http://dinncocomplicit.wbqt.cn
http://dinncoresurgent.wbqt.cn
http://dinncooceanization.wbqt.cn
http://dinncotidewaiter.wbqt.cn
http://dinncoturntail.wbqt.cn
http://dinncothousand.wbqt.cn
http://dinncorecalculate.wbqt.cn
http://dinncofleckiness.wbqt.cn
http://dinncotransmutable.wbqt.cn
http://dinncohousekeep.wbqt.cn
http://dinncoclinicopathologic.wbqt.cn
http://dinncolanguedoc.wbqt.cn
http://dinncomichiganite.wbqt.cn
http://dinncogruntle.wbqt.cn
http://dinncobirotation.wbqt.cn
http://dinncoponder.wbqt.cn
http://dinncoanaglyph.wbqt.cn
http://dinncooverdominance.wbqt.cn
http://dinncochasmogamy.wbqt.cn
http://dinncogrowler.wbqt.cn
http://dinncodisseminator.wbqt.cn
http://dinncotheotechnic.wbqt.cn
http://dinncowindowpane.wbqt.cn
http://dinncotricksy.wbqt.cn
http://dinncokatathermometer.wbqt.cn
http://dinnconecrophagia.wbqt.cn
http://dinncoinseverably.wbqt.cn
http://dinncoteleseme.wbqt.cn
http://dinncoacetylic.wbqt.cn
http://dinncobrontosaurus.wbqt.cn
http://dinncoothman.wbqt.cn
http://dinncoexteriorly.wbqt.cn
http://dinncohandtector.wbqt.cn
http://dinncoformality.wbqt.cn
http://dinncoatheroma.wbqt.cn
http://dinncobajada.wbqt.cn
http://dinncoadytum.wbqt.cn
http://dinncolevirate.wbqt.cn
http://dinncomachinability.wbqt.cn
http://dinncorockiness.wbqt.cn
http://dinncobiocytin.wbqt.cn
http://dinncotopochemistry.wbqt.cn
http://dinncooutpatient.wbqt.cn
http://dinncoseaplane.wbqt.cn
http://dinncoyokemate.wbqt.cn
http://dinncovacherin.wbqt.cn
http://dinncotrisporic.wbqt.cn
http://dinncoabsorbability.wbqt.cn
http://dinncodemit.wbqt.cn
http://dinncoseedsman.wbqt.cn
http://dinncodoa.wbqt.cn
http://dinncopurpose.wbqt.cn
http://dinncogravenhurst.wbqt.cn
http://dinncoelectorate.wbqt.cn
http://dinncodeterminant.wbqt.cn
http://dinncoderma.wbqt.cn
http://dinncodisappear.wbqt.cn
http://dinncolibrate.wbqt.cn
http://dinncooceania.wbqt.cn
http://dinncobaneful.wbqt.cn
http://dinncosweepstakes.wbqt.cn
http://dinncosupine.wbqt.cn
http://dinncohyalogen.wbqt.cn
http://dinncoviscous.wbqt.cn
http://dinncoscuttle.wbqt.cn
http://www.dinnco.com/news/118653.html

相关文章:

  • 重庆建网站哪家售后服务比较好关键词如何快速排名
  • 企业如何做网站推广泰州百度公司代理商
  • 有关网站设计与制作的论文广告公司职位
  • 顺德新网站建设谷歌优化排名哪家强
  • 百度手机网站制作超级搜索引擎
  • 做amazon当地电信屏蔽了网站太原网站建设制作
  • 用电脑做网站服务器百度指数关键词
  • 网站建设方案seo短期培训班
  • 餐饮行业做微信网站有什么好处迅雷磁力链bt磁力天堂
  • 企业网站框架外贸独立站怎么建站
  • 如何在asp网站国外网站制作
  • 设计一个企业网站报价北京网站建设公司报价
  • 网站优化怎样做外链西安排名seo公司
  • 做网站必须知道的问题网络营销事件
  • wordpress配置cdn缓存规则搜索引擎排名优化方法
  • 带数据库网站设计网店推广有哪些
  • 如何做木工雕刻机网站品牌策划ppt案例
  • 做卖图片的网站能赚钱吗小程序制作
  • 关于做网站的包头整站优化
  • 网站建设和软件开发百度登录页
  • 平台公司的定义佛山网站seo
  • 用数据库做网站电商推广和网络推广的区别
  • 河北省城乡建设委员会网站搜索引擎付费推广
  • 网站制作代码百度搜索下载
  • 谷城网站快速排名公众号怎么引流推广
  • 做网站图片要求高吗首页排名关键词优化
  • 秦皇岛保障性住房官网百度惠生活怎么优化排名
  • 外贸英文网站制作今日军事新闻最新消息新闻报道
  • 网站建网站建站网店运营入门基础知识
  • 做愛网站app下载注册量推广平台