继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

python01 用户交互程序

LEATH
关注TA
已关注
手记 484
粉丝 93
获赞 467

python01 用户交互程序

标签(空格分隔): 编程语言 Python

input

input用来赋值变量不确定的值
Input对应的输入都当做字符串
Int(input):将input输入的字符串强制转成数字
%s字符串 占位符
%d数字 占位符
%f浮点数 占位符


1.使用%s拼接

name = input ('name:')
age = input ('age:')
info = '''
-----information of %s-----  #这里%s用来站位,后面指定站位的内容
Name:%s
Age:%s
------------end------------
''' %(name,name,age)          #一共有3个%s占位符,根据先后顺序指定占位符的内容
print (info)

下面是输出结果:
https://img2.mukewang.com/5b1a2ee3000111e502610177.jpg

name和age,都是不确定的值,自己手动输入什么就是什么。


2.使用{}拼接

2.1

name = input ('name:')
age = input ('age:')
info = '''
-----information of {_name}-----
Name:{_name}
Age:{_age}
------------end------------
''' .format(_name=name,_age=age)
print (info)

使用大括号{}也可以当做占位符,然后通过.format来引用变量
https://img.mukewang.com/5b1a2f030001b5f103120186.jpg

2.2

name = input ('name:')
age = input ('age:')
info = '''
-----information of {0}-----
Name:{0}
Age:{1}
------------end------------
''' .format(name,age)
print (info)

https://img1.mukewang.com/5b1a2f1d0001dc7402970178.jpg不建议这么用,因为如果内容多的话,数字顺序不好定义和寻找。

打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP