Pyhon day3

Posted

tags:

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

一、初识编码

 

技术分享

 

 

 

技术分享

 

二、逻辑运算、

+  加 

-  减

*  乘

/  除%  取余

**  幂

// 取整

==  等于

!=  不等于

<>  不等于

count = count + 1      count += 1
count = count - 1      count -= 1
sum = 2
count = 1
count += sum
 print(count)
 count *= sum
count **= sum  # count = count**sum
print(count)

 

 

三、and_or_not

1.含义

and 且,前后为真才为真。
or 或,有一为真,就为真。
not 非。取反。

2.优先级()>not>and>or

同等级别下从左到右依次运算

 

int与bool值之间的转换。

bool ----> int
a = int(True)
b = int(False)
print(a,b)


int ---> bool
a = bool(413456)
b = bool(6.5)
c = bool(0)
d = bool(-1)
print(a,b,c,d)

ps  :x or y 如果 x 为真,则值为x,否则为y [and相反]

 

 

 

四 in______or______not in

 

s1 = abcd
# print(‘a‘ in s1)
# print(‘ag‘ in s1)
print(1 and a in s1)

 



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

Pyhon 日志管理 -- logging

pyhon模块制作及导入

pyhon学习第六天 代码块,小数据池(缓存机制,驻留机制),is == id =,字符编码

day01(pyhon基础)

pyhon-----获取ip的两种方法

Pyhon 中文编码问题(字符串前加‘U’)