接上期 按下Win+R键打开cmd进入windows终端
在终端中输入ipython按下回车键(ipython是一个有语法高亮输入输出标注的交互式环境)
在In[1]中输入 print("This is a python program!\n")
则在屏幕下方会输出This is a python program!
python中的基础变量有两种:
1.数字
整型 int
浮点型 float
复数 complex
逻辑值 bool
python中的变量无需事先声明
对于整型和浮点型
输入a =10
b = 20.6
c=a+b
print(c)
对于复数
输入c1 = 6.23+3.14j
c2 = 2.1+10j
c3 = c1 -c2
print(c3)
对于bool变量
有三种运算符 and(与) or(或) not(非)
有三种判断符 >(大于)
输入a= (1>10)
b= (20>15)
c= a and b
d= a or b
e = not b
print(c,d,e)
2.字符串变量
字符串变量可以直接赋值
a = "This is a string"
b='This is a string, too'#字符串赋值时使用单引号双引号没有区别
#后面表示注释,其作用类似于c++中的//
多行字符串
使用三个单引号或者双引号
c =''' should auld acquaintance be forgot,
and never brought to mind?
should auld acquaintance be forgot,
for the sake of auld lang syne.'''
print(c)
字符串可以相加
university = 'PKU '
department = 'College of engineering'
name = university +department
print(name)
格式化输出
a = 19
print('He is %d years old',%a)
name ='Renyx'
print('The author\'s name is %s'%name)#要注意在author后面的 ' 前加 \ 否则字符串会提前终止
通过输入来给变量赋值
a = input('输入你的名字:\n')
输入你的名字:
你的名字
b = input('输入你的年龄:\n')
输入你的年龄:
你的年龄
print(a,b)
下期介绍 python中的列表变量
领取专属 10元无门槛券
私享最新 技术干货