python基础(基本数据类型)

it2022-05-05  117

字符串(引号):

n1="hello"

n2='hello'

n3="""hello"""

 

数字

a1=13

a2=3

a1 / a2=4.3333333

a1 // a2 =4

a1 % a2=1

a2 ** 3=27

 

转载于:https://www.cnblogs.com/chenjiayun/p/11135329.html


最新回复(0)