day 2

1、变量

Python 变量命名规则

  • 变量名必须以字母或者下划线开头。
  • 变量名不能以数字开头。
  • 变量名只能包含数字字母以及下划线 (A-z, 0-9, and _ )
  • 变量名大小写敏感 (firstname, Firstname, FirstName and FIRSTNAME) 是不通的变量)

示例:

firstname
first_name
_if # 如果我们想用预置的单词作为变量名
year_2021
year2021
current_year_2021
num1

2、内置方法

最常用的一些内置方法有:print(), len(), type(), int(), float(), str(), input(), list(), dict(), min(), max(), sum(), sorted(), open(), file(), help(), and dir();

3、检查数据类型以及转换类型

  • 检查数据类型: 我们用 type 检查某个数据或者变量的数据类型

示例:

  • 转换:从一个数据类型转化为另一个数据类型。在做数学运算时我们会用到 int(), float(), str(), list, set 首先我们要把其他类型的数据转发为 int 或者 float 不然后报错。 如果我们要把一个数字和字符串连接,要先把数字转换为字符串。 

4、数字

Python的数字数据类型:

  1. Integers: 整形(负数, 0 和 正数) 数字 示例: ... -3, -2, -1, 0, 1, 2, 3 ...

  2. 浮点型(小数) 示例: ... -3.5, -2.25, -1.0, 0.0, 1.1, 2.2, 3.5 ...

  3. 复杂数字 示例: 1 + j, 2 + 4j, 1 - 1j

##习题2-4
num_one = 5
num_two = 4

total = num_one + num_two
print(total)

diff = num_one - num_two
print(diff)

product = num_one * num_two
print(product)

division = num_one / num_two
print(division)

remainder = num_two % num_one
print(remainder)

exp = num_one ** num_two
print(exp)

floor_division = num_one // num_two
print(floor_division)

##习题2-5
r = input('请输入圆的半径:')
s = 3.14*int(r)**2
c = 3.14*int(r)*2
print('圆的面积为:',s)
print('圆的周长为:',c)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值