码迷,mamicode.com
首页 > 编程语言 > 详细

【Python算法】正常算法

时间:2016-11-02 07:30:20      阅读:255      评论:0      收藏:0      [点我收藏+]

标签:div   span   round   表达   rgb   pad   求值   back   margin   

## 1、正常算法

```

if x < y:

    smaller = x

else:

    smaller = y

print (smaller)  

```


    

## 2、三元表达式

```

smaller = x if x<y else y

print (smaller)

```


##3、短路求值

```

smaller = x < y and x or y

print (smaller)

```





【Python算法】正常算法

标签:div   span   round   表达   rgb   pad   求值   back   margin   

原文地址:http://www.cnblogs.com/stellarilee/p/6021487.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!