博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
笨方法学python - 03
阅读量:5134 次
发布时间:2019-06-13

本文共 996 字,大约阅读时间需要 3 分钟。

三、数字和数学计算
数学运算符: +  plus -  minus /  slash *  saterisk %  percent  <  less-than >  greater-than <= less-than-equal >= greater-than-equal
运算优先级:parenthese > exponents > multiplication > division > addition > subtraction(括号>指数>乘>除>加>减
输入:
print('I will now count my chickens:')print('Hens',round(25 + 30 / 6))print('Roosters',100 - 25 * 3 % 4)print('Now I will count the egges:')print(round(3 + 2 +1 - 5 + 4 % 2 - 1 / 4 + 6))print("What is 3 + 2 ?",3 + 2)print("What is 5 - 7 ?",5 - 7)print("Oh, that's why it's False.")print('How about some more?')print('Is it greater?',5 > -2)print('Is it greater or equal?',5 >= -2)print('Is it less or equal?',5 <= 2)
输出:
I will now count my chickens:Hens 30Roosters 97Now I will count the egges:7What is 3 + 2 ? 5What is 5 - 7 ? -2Oh, that's why it's False.How about some more?Is it greater? TrueIs it greater or equal? TrueIs it less or equal? False

 

% 在py中是余数符号 x 除以 y 余 J,(100 / 16 余 4),% 运算的结果就是J(4)的这部分
 

转载于:https://www.cnblogs.com/dseinchen/p/9327542.html

你可能感兴趣的文章
【luogu4185】 [USACO18JAN]MooTube [并查集]
查看>>
手机号脱敏处理
查看>>
CI控制器调用内部方法并载入相应模板的做法
查看>>
Hdu - 1002 - A + B Problem II
查看>>
HDU - 2609 - How many
查看>>
每天CookBook之Python-003
查看>>
每天CookBook之Python-004
查看>>
Android设置Gmail邮箱
查看>>
StringBuffer的用法
查看>>
js编写时间选择框
查看>>
PHP压缩文件操作
查看>>
4.你认为一些军事方面的软件系统采用什么样的开发模型比较合适?
查看>>
日常开发需要掌握的Maven知识
查看>>
Java数据结构和算法(四)--链表
查看>>
JIRA
查看>>
ssl介绍以及双向认证和单向认证原理
查看>>
【BZOJ2441】【中山市选2011】小W的问题(树状数组+权值线段树)
查看>>
小技巧——直接在目录中输入cmd然后就打开cmd命令窗口
查看>>
深浅拷贝(十四)
查看>>
由级别和性格特征将程序员分类 ---看看你属于哪一种
查看>>