首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往

二 输入输出与变量赋值

接上期 按下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中的列表变量

  • 发表于:
  • 原文链接http://kuaibao.qq.com/s/20180108G0QP4B00?refer=cp_1026
  • 腾讯「腾讯云开发者社区」是腾讯内容开放平台帐号(企鹅号)传播渠道之一,根据《腾讯内容开放平台服务协议》转载发布内容。
  • 如有侵权,请联系 cloudcommunity@tencent.com 删除。

扫码

添加站长 进交流群

领取专属 10元无门槛券

私享最新 技术干货

扫码加入开发者社群
领券