Note 1 for <Pratical Programming : An Introduction to Computer Science Using Python 3>

Book Imformation :

<Pratical Programming : An Introduction to Computer Science Using Python 3> 2nd Edtion

Author : Paul Gries,Jennifer Campbell,Jason Montojo

Page : Chapter 1 and Chapter 2.1-2.2

 

1.every computer runs operating system,which it's the only program on the computer that's allowed direct access to the hardware(硬件).

or more complicate(add another layer between the programmer and the hardware) :

2.two ways to use the Python interpreter(解释器)

(1).execute a saved Python program with .py extension(扩展,后缀)

(2).using a Python shell(壳,命令解析器)

3.the >>> symbol is called a prompt(提示),prompting you to type something

4.the result of interger division has a decimal point even is a whole number :

1 >>> 5 / 2
2 2.5
3 >>> 4 / 2
4 2.0

5.when the operands (操作数) are int and float,Python automatically convert the int into a float :

1 >>> 17.0 - 10
2 7.0
3 >>> 17 - 10.0
4 7.0

and you can omit zero like ‘17.’ (but most people think it is a bad idea) 

6.integer division,modulo(取模) 

1 >>> 53 // 24 
2 2
3 >>> 53 % 24
4 5

//:整除

when the operands are negative or float,it takes the floor(向下取整) of the result.

1 >>> -17 // 10 
2 -2
3 >>> 17 // 10
4 1
1 >>> 3.5 // 1.0
2 3.0
3 >>> 3 // 1.1
4 2.0
5 >>> 3.3 // 1
6 3.0

when using modulo,the sign of the result matches the divisor(除数)

定义:a % b = a - n*b,n为不超过a/b的整数

1 >>> -17 % 10
2 3
3 >>> 17 % -10
4 -3

7.exponentiation(取幂):**

1 >>> 2 ** 3
2 8
3 >>> 3 ** 3
4 27

8.binary operators(双目运算符),unary operators(单目运算符)

+、-、*、/:binary operators

-(nagetive):unary operators

1 >>> -5
2 -5
3 >>> --5
4 5
5 >>> ---5
6 -5

 

转载于:https://www.cnblogs.com/zhenggege/p/7748522.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值