Python基础之条件表达式运算符

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python基础之条件表达式运算符相关的知识,希望对你有一定的参考价值。

1.条件表达式:

if..elif...else

2.运算符

 a+=b #等效a=a+b,相加

 a-=b #等效a=a-b,相减

 a*=b #等效a=a*b,相乘
 a/=b #等效a=a/b,相除
 a%=b #等效a=a%b,取模
 a**=b #等效a=a**b,幂赋值运算
 a//=b #等效a=a//b,取整除赋值运算

 

He.py

#coding=utf8

#逻辑表达式
def show1():
    age=19
    if age<0:
        print("未知")
    elif (age>0 and age<=18):
        print("未成年")
    else:
        print("已成年")

#运算符
def show2():
    a=4
    b=3
    a+=b #等效a=a+b,相加
    print(str(a))
    a-=b #等效a=a-b,相减
    print(str(a))
    a*=b #等效a=a*b,相乘
    print(str(a))
    a/=b #等效a=a/b,相除
    print(str(a))
    a%=b #等效a=a%b,取模
    print(str(a))
    a**=b #等效a=a**b,幂赋值运算
    print(str(a))
    a//=b #等效a=a//b,取整除赋值运算
    print(str(a))
    
    strs=[7,4,60]
    #检查此值是否存在
    if (a in strs): 
        print("此值存在")
    else:
        print("此值不存在")

调用代码:

Python 3.6.1 (v3.6.1:69c0db5, Mar 21 2017, 17:54:52) [MSC v.1900 32 bit (Intel)] on win32
Type "copyright", "credits" or "license()" for more information.
>>> from He import *
>>> show1()
已成年
>>> show2()
7
4
12
4.0
1.0
1.0
0.0
此值不存在
>>> 

 





以上是关于Python基础之条件表达式运算符的主要内容,如果未能解决你的问题,请参考以下文章

python基础--基础语法

Python基础

编程基础之Python11Python中的表达式

Python基础之条件判断

Python 之 基础知识

python基础之条件循环语句