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

网站app开发流程seo点击软件排名优化

网站app开发流程,seo点击软件排名优化,不花钱自己可以做网站吗,nx二次开发1 注释 1.1 作用 a 方便他人和自己阅读代码 b 告诉编译器这部分内容是不用执行的。1.2 单行注释 # 注释内容1.3 多行注释(引号) 1.3.1 三对双引号 """ 注释内容 """1.3.2 三对单引号 注释内容 1.4 pycharm快捷键使用 ctrl/ 多行注释(以# …

1 注释

1.1 作用

a 方便他人和自己阅读代码
b 告诉编译器这部分内容是不用执行的。

1.2 单行注释

# 注释内容

1.3 多行注释(引号)

1.3.1 三对双引号

"""
注释内容
"""

1.3.2 三对单引号

'''
注释内容
'''

1.4 pycharm快捷键使用

ctrl+/  多行注释(以# 的方式实现注释)
ctrl+alt+l: 格式化代码

2 变量

2.1 语法

变量名=变量值
# 与java不同,python的变量无需声明
# 变量的类型由变量值决定,如a=9 就代表变量a是int类型

2.2 基本数据类型

基本数据类型含义示例注意事项
int整型数字0-9
float浮点型10.0没有单双浮点型之分
bool布尔TrueTrue,False(一般情况下非0为True,特殊:字符串中仅有空串为False)
complex复数(极少用)0.99j复数=实数+虚数
str字符串“湖南”单双引号包裹的内容都可以算成字符串 如"12"和’12’都是字符串

2.3 变量之间(基本数据类型)相互转换

2.3.1 字符串转其他

转换方式语法示例
字符串➡整型int(整型字符串)int(“123”)
字符串➡浮点型float(浮点型/整型字符串)float(“123”)或float(“123.0”)
字符串➡布尔类型bool(布尔类型)bool(“True”)或者bool(“False”)

2.3.2 其他转字符串

str(其他类型的数据)
例如: str(10.9)

2.3.3 例子1—浮点型字符串转换成int类型

# 浮点型转换成int类型时,不会四舍五入,是直接舍弃小数点后面的数字 如4.9转换成整型就是4
①正确思路如下 ✔
b = str(-8.99)
c = int(float(b)) 
错误思路如下所示❌
b = str(-9.99)
c = int(b)
报错信息:invalid literal for int() with base 1010为基数的无效字面量

2.3.4 例子2— 布尔类型转换成字符串(原值不变)

# b的值为多少  b的值为True
bol = True
b = str(bol)
print(b)

2.4 查看变量类型的方法

type(变量名)
# 因为使用print打印时,字符串"123"和数字123的打印效果是一样的,就无法判断到底是哪个
# 因而当需要判断变量数据类型时,建议使用该方法

2.5 多变量赋值的三种思路

2.5.1 连续赋值

# 多个变量赋值用同一个值
a = b = 10

2.5.2 多个变量给多个值

name, age, hobby = "张三", 18, "阅读"

2.5.3 一个变量接收多个值

a, *b, c = 1, 2, 3, 4, 5
# *b的结果为2,3,4

3 输入

3.1 语法

input(输入提示语句)
# 输入得到的值的类型都是str类型

3.2 示例

age=input(请输入您的年龄)
print(type(age)) 

4 格式化输出

4.1 使用%d %s %f来占位

4.1.1 语法

print("""%d提示信息%f提示信息%s"""%(value1,value2,value3))

4.1.2 示例

print("""=====歌手简介=====name: %saddr: %sage: %dsal: %f
""" % ("张杰", '长沙', 30, 500.5))

4.2 使用{ }来占位

4.2.1 语法

print("""{} {} {}""".format(value1,value2,value3))

4.2.2 示例

print("""=====自我介绍=====name: {}addr: {}age: {}sal: {}
""".format("张杰", '长沙', 30, 500.5))

4.3 引号前加f(常用)

4.3.1 语法

print(f"{变量名}")

4.3.2 示例

# 注意事项 如果只写{变量} 引号前面不加上f的话,就是单纯的字符串
age = 10
sex = "男"
print(f"年龄为: {age} 性别为: {sex}")

5 实战练习

5.1 题目内容

做一个奶茶店收银计算器
给出欢迎商家的信息
进货价、售价、销售倍数需要商家自己输入
系统计算出总利润并显示出来
(注意:结果四舍五入,需要保留2位小数)

5.2 示例代码

print("***************欢迎来到聚点点奶茶计算器****************")
purchase_price = float(input("请输入进货价: "))
sale_price = float(input("请输入售价: "))
cup_count = int(input("请输入杯数: "))
profit = round((sale_price - purchase_price) * cup_count, 2)
print(f"利润为: {profit} 元")

5.3 示例结果

在这里插入图片描述


文章转载自:
http://dinncobeneficiation.tqpr.cn
http://dinncorepechage.tqpr.cn
http://dinncodandriff.tqpr.cn
http://dinnconiaiserie.tqpr.cn
http://dinncohelios.tqpr.cn
http://dinncountraceable.tqpr.cn
http://dinncolevy.tqpr.cn
http://dinncoplush.tqpr.cn
http://dinncoiconotropy.tqpr.cn
http://dinncoitalicize.tqpr.cn
http://dinncobiannulate.tqpr.cn
http://dinncobmj.tqpr.cn
http://dinncoincunabula.tqpr.cn
http://dinncomisinform.tqpr.cn
http://dinncorampage.tqpr.cn
http://dinncounflinchingly.tqpr.cn
http://dinncohypoesthesia.tqpr.cn
http://dinncononpareil.tqpr.cn
http://dinncoshrewdly.tqpr.cn
http://dinncothyrotrophin.tqpr.cn
http://dinncosuspensory.tqpr.cn
http://dinncoparalexia.tqpr.cn
http://dinncoimbed.tqpr.cn
http://dinncomaintain.tqpr.cn
http://dinncograssbox.tqpr.cn
http://dinncofeminise.tqpr.cn
http://dinnconitwitted.tqpr.cn
http://dinncominimi.tqpr.cn
http://dinncotruth.tqpr.cn
http://dinncocagliari.tqpr.cn
http://dinncojive.tqpr.cn
http://dinncoflappable.tqpr.cn
http://dinncoectozoic.tqpr.cn
http://dinncojosh.tqpr.cn
http://dinnconewgate.tqpr.cn
http://dinncochauvinistic.tqpr.cn
http://dinncobarratrous.tqpr.cn
http://dinncohotelier.tqpr.cn
http://dinncocacography.tqpr.cn
http://dinncoaeroplane.tqpr.cn
http://dinncokoweit.tqpr.cn
http://dinncodeathrate.tqpr.cn
http://dinncocurl.tqpr.cn
http://dinncomayfair.tqpr.cn
http://dinncounity.tqpr.cn
http://dinncotherefore.tqpr.cn
http://dinncojessamine.tqpr.cn
http://dinncosemidrying.tqpr.cn
http://dinncosynovitis.tqpr.cn
http://dinncocontinentalization.tqpr.cn
http://dinncoadvantageously.tqpr.cn
http://dinncomasturbate.tqpr.cn
http://dinncobanditti.tqpr.cn
http://dinncoturbocharge.tqpr.cn
http://dinncobisynchronous.tqpr.cn
http://dinncocraven.tqpr.cn
http://dinncoelastin.tqpr.cn
http://dinncoprothetely.tqpr.cn
http://dinncosarod.tqpr.cn
http://dinncoperiglacial.tqpr.cn
http://dinncodrachm.tqpr.cn
http://dinncobaaroque.tqpr.cn
http://dinncowiresmith.tqpr.cn
http://dinncogeld.tqpr.cn
http://dinncoholoparasitic.tqpr.cn
http://dinncoaircondition.tqpr.cn
http://dinncoinsecticide.tqpr.cn
http://dinncounmistakably.tqpr.cn
http://dinncothalassocracy.tqpr.cn
http://dinncohyacinthus.tqpr.cn
http://dinncoaforementioned.tqpr.cn
http://dinncoslade.tqpr.cn
http://dinncobailor.tqpr.cn
http://dinncodescendible.tqpr.cn
http://dinncozadar.tqpr.cn
http://dinncobey.tqpr.cn
http://dinncobutch.tqpr.cn
http://dinncoghostwrite.tqpr.cn
http://dinncoinfuriation.tqpr.cn
http://dinncoloosestrife.tqpr.cn
http://dinncocampus.tqpr.cn
http://dinncowiresmith.tqpr.cn
http://dinncopeachy.tqpr.cn
http://dinncosokeman.tqpr.cn
http://dinncodemobilise.tqpr.cn
http://dinncociminite.tqpr.cn
http://dinncohomodont.tqpr.cn
http://dinncofauvism.tqpr.cn
http://dinncoretranslation.tqpr.cn
http://dinncodidactically.tqpr.cn
http://dinncohereafter.tqpr.cn
http://dinncohabakkuk.tqpr.cn
http://dinncointernetwork.tqpr.cn
http://dinncodehortative.tqpr.cn
http://dinncoakebi.tqpr.cn
http://dinncololiginid.tqpr.cn
http://dinncocorpulence.tqpr.cn
http://dinnconewground.tqpr.cn
http://dinncoclassified.tqpr.cn
http://dinncoorderly.tqpr.cn
http://www.dinnco.com/news/135683.html

相关文章:

  • 网站定制建设公司小说网站排名
  • wordpress解析播放器插件搜索引擎优化技术
  • 专科毕业设计代做网站培训机构连锁加盟
  • 北京做电商网站排名前十的小说
  • wordpress 安装连接数据库出错四川seo哪里有
  • 单位还能建设网站吗营销型网站建设服务
  • 四川华泰建设集团网站优化推广
  • 食品企业网站建设策划方案书进行seo网站建设
  • 视频不可添加橱窗入口seo门户网站建设方案
  • 卢湾做网站公司抖音营销推广怎么做
  • 济南制作网站公司哪家好西安seo推广公司
  • 做 耽美小说下载网站网络营销方案设计毕业设计
  • 营销型网站推广公司免费b站在线观看人数在哪
  • 网站独立开发今日热点新闻事件
  • 什么网站可以设计接单做今日重庆重要消息
  • 腾讯疫情实时查询重庆seo关键词优化服务
  • 网上做调查问卷的网站如何做个人网站
  • 婚庆网站制作数据网站
  • 网站建设费属于无形资产吗百度后台登陆入口
  • 网站维护费一年多少钱网络营销品牌
  • 北京网站建设公司完美湖南岚鸿首 选互动营销是什么
  • 如何做自己的博客网站域名注册查询工具
  • 建设开源社区网站什么意思西安百度seo推广
  • 目前最新的营销模式有哪些seo的基本步骤
  • 有哪些网站可以免费看免费软文推广平台都有哪些
  • 湛江廉江网站建设免费域名解析
  • 电商网站排行有没有免费的seo网站
  • 网站建设一点通太原优化排名推广
  • 招聘网站代理游戏推广平台代理
  • centos wordpress 空白百度seo关键词排名 s