‘‘‘
1、能够很规范的打印出想要的内容
2、双引号内没有办法放变量
‘‘‘
## 格式化输入
# %s 输入任意扥内容都不会报错因为全部当做str来处理
# %d 只能输入数字
#案例一
name = input("Name: ")
age = input("Age: ")
hosttown = input("HostTown: ")
info = ‘‘‘
Name: %s
Age:%s
Hosttown: %s
‘‘‘%(name,age,hosttown)
print(info)
##案例二
name = input("name: ")
time = input("time:")
print("name:%s\ntime:%s" %(name,time))
原文地址:http://blog.51cto.com/swiki/2128667
时间: 2024-10-10 18:55:52