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

移动微网站朋友圈软文范例

移动微网站,朋友圈软文范例,如何做美食的视频网站,深圳工信部网站备案信息查询Python入门之最基础 IDLE有两种模式,一种是交互模式,通俗讲就是写一个代码,会得到相应的反馈,另一种为编辑模式. 注意事项: 标点符号一定要用英文符号 要注意缩进 dir(builtins)可以看到python所有的内置函数&#…

Python入门之最基础

IDLE有两种模式,一种是交互模式,通俗讲就是写一个代码,会得到相应的反馈,另一种为编辑模式.

注意事项:

标点符号一定要用英文符号
要注意缩进
dir(builtins)可以看到python所有的内置函数;

基本语法

变量相当于一个名字
这个数值呼唤惊到我了,太牛了。

x = 3
y = 5
x,y = y,x
print(x,y)
5 3

字符串(string)
‘’ “” 涉及到单引号双引号的时候,会用到转义字符 \

原始字符 row string
前面加 r 代表输出原始字符串

print(r"D:\three\two\one\now")
D:\three\two\one\now

若想字符换行,可在后加 \ ,可跨行

print("   *   \n\***  \n\*****")*   ***  *****

长字符串 Triple quoted,也叫三引号字符串,‘’‘前后呼应’‘’,“”“成双成对”“”。

字符串加法与数字加法截然不同

'520'+'1314''5201314'520+13141834

我每天爱你3000遍

print("我每天爱你3000遍\n" * 30)我每天爱你3000遍
我每天爱你3000遍
我每天爱你3000遍
我每天爱你3000遍
我每天爱你3000遍
我每天爱你3000遍
我每天爱你3000遍
我每天爱你3000遍
我每天爱你3000遍
我每天爱你3000遍
我每天爱你3000遍
我每天爱你3000遍
我每天爱你3000遍
我每天爱你3000遍
我每天爱你3000遍
我每天爱你3000遍
我每天爱你3000遍
我每天爱你3000遍
我每天爱你3000遍
我每天爱你3000遍
我每天爱你3000遍
我每天爱你3000遍
我每天爱你3000遍
我每天爱你3000遍
我每天爱你3000遍
我每天爱你3000遍
我每天爱你3000遍
我每天爱你3000遍
我每天爱你3000遍
我每天爱你3000

if else语句与while语句

random随机数使用,生成1-10里的随机数

import random
random.randint(1,10)

random生成的随机数可以重现

x = random.getstate()
random.randint(1,10)
1
random.randint(1,10)
4
random.randint(1,10)
6
random.randint(1,10)
7
random.setstate(x)
random.randint(1,10)
1
random.randint(1,10)
4
random.randint(1,10)
6
random.randint(1,10)
7

数字类型

python数字类型分三种:整数、浮点数、复数

python的整数长度是不受限制的,可以随时随地进行大数运算

python的浮点数 ,是不是很惊讶,我也表示有点惊讶,原来我的口算能力还可以hhhhhh。

0.1+0.2
0.30000000000000004i = 0
while i < 1:i = i + 0.1print(i)0.1
0.2
0.30000000000000004
0.4
0.5
0.6
0.7
0.7999999999999999
0.8999999999999999
0.9999999999999999
1.0999999999999999

python的浮点数是采用IEEE754的标准来存储浮点数的,会产生一定精度的误差。

复数 包含实部和虚部

1+2j
(1+2j)
x = 1 + 2j
x.real
1.0
x.imag
2.0

地板除 //,向下取整

在这里插入图片描述

3/2
1.5
3//2
1
1//2
0
-3 // 2
-2

x == (x // y) * y + (x % y)

divmod(-3,2)
(-2, 1)
-2 * 2 + 1
-3

在这里插入图片描述

x = -520
abs(x)
520
y = -3.14
abs(y)
3.14
z = 1 + 2j
abs(z)
2.23606797749979
int('520')
520
int(3.14)
3
int(520)
520
int(9.99)
9
float(3.14)
3.14
float('3.14')
3.14
float(520)
520.0
complex("1+2j")
(1+2j)
complex("1 + 2j")
Traceback (most recent call last):File "<pyshell#243>", line 1, in <module>complex("1 + 2j")
ValueError: complex() arg is a malformed string pow(2,3)
8
pow(2,3,5)
3
2 ** 3 % 5
3

在这里插入图片描述
fraction(0,1)表示分子为0,分母为1。

bool(None)
False
bool(False)
False
bool(0)
False
bool(0.0)
False
bool(0j)
False
bool(decimal.Decimal(0))
Falseimport fractions
bool(fractions.Fraction(0,1))
False

bool运算

1 == True
True
0 == False
True
True + False
1
True - False
1
True * False
0
True / False
Traceback (most recent call last):File "<pyshell#25>", line 1, in <module>True / False
ZeroDivisionError: division by zero

逻辑运算符

在这里插入图片描述

3 < 4 and 4 < 5
True
3 > 4 and 4 < 5
False
3 < 4 and 4 > 5
False
3 > 4 and 4 > 5
False3 < 4 or 4 < 5
True
3 > 4 or 4 < 5
True
3 < 4 or 4 > 5
True
3 > 4 or 4 > 5
Falsenot True
False
not False
True
not 250
False
not 0
True
250
250

短路逻辑的核心思想

从左往右,只有当第一个操作数的值无法确定逻辑运算的结果时,才对第二个操作数进行求值。

(not 1) or (0 and 1) or (3 and 4) or (5 and 6) or (7 and 8 and 9)
4False or 0 or 4 or 6 or 9
43 and 4
4
3 or 4
3
0 and 3
0
0 or 4
4

运算符优先级

注意:优先级 1 比 2 小。
在这里插入图片描述

1 + 2 > 3 - 4
True
not 1 < 2
False
not 1
False
0 or 1 and not 2
Falsenot 1 or 0 and 1 or 3 and 4 or 5 and 6 or 7 and 8 and 9
4
False or 0 or 4 or 6 or 9
4

好棒好棒,了解了这么多知识点,初入python,加鸡腿加脑子,继续努力。

http://www.hkea.cn/news/419076/

相关文章:

  • 校园网站推广方案怎么做应用商店优化
  • 巩义网站建设网络营销公司是做什么的
  • 做网站基本教程一站式营销平台
  • 杭州模板网站建设电脑培训网上培训班
  • 大连做网站不错的公司怎样把广告放到百度
  • 网站上面带官网字样怎么做的网站设计的流程
  • 有个网站是做视频相册的网球排名即时最新排名
  • 论坛网站备案流程图优化大师怎么提交作业
  • 织梦政府网站模板百度在线入口
  • 专业做婚纱摄影网站会员制营销
  • 网站内容丰富互动营销平台
  • 阿里巴巴logo高清图谷歌seo网站推广
  • 网站如何做内链seo高手是怎样炼成的
  • 设计师个人网站建设怎样注册一个自己的平台
  • 徐州营销网站建设产品线上推广渠道
  • 绍兴市网站建设公司企业官网搭建
  • 关于网页设计的网站免费发布信息网站大全
  • 郑州新闻头条seo基础教程
  • 做网站比较大的公司朔州seo
  • 如何制作私人网站福州专业的seo软件
  • 做网站主流技术南宁在哪里推广网站
  • 老板让我做网站负责人微博营销软件
  • 教我做网站百度打开
  • 网站开发时如何兼容电商运营是做什么的
  • 河北建设银行石家庄分行招聘网站怎么申请自己的网络平台
  • vs2008 做网站搜索引擎的工作原理是什么
  • 东莞常平做网站公司app营销策划方案
  • 爱用建站 小程序重庆网站制作公司
  • 网站建设小企业案例漯河网络推广哪家好
  • wordpress 清空回收站合肥网站优化软件