1.格式化输出 .%d %s 格式化输出:% 占位符,d 表示替换整型数,s表示要替换字符串. name = input('请输入名字:') age = input('请输入年龄:') sex = input('请输入性别:') msg = '我的名字是' + name + '我的年龄是' + age + '我的性别是' + sex print(msg) msg = ''' ------------ info of Alex Li ----------- Name : Alex Li Age
C++ cout格式化输出(转) 这篇文章主要讲解如何在C++中使用cout进行高级的格式化输出操作,包括数字的各种计数法(精度)输出,左或右对齐,大小写等等.通过本文,您可以完全脱离scanf/printf,仅使用cout来完成一切需要的格式化输入输出功能(从非性能的角度而言).更进一步而言,您还可以在<sstream>.<fstream>上使用这些格式化操作,从而代替sprintf和fprintf函数.为方便描述,下文仅以cout为例进行介绍. 一.综述 cout是STL库提供
while循环 1. while循环的结构 while 条件: 执行语句1 执行语句2 i = 0 while i < 10: print(i) i += 1 运行结果 0 1 2 3 4 5 6 7 8 9 Process finished with exit code 0 while循环可以使用break来终止循环 # 打印1到100 i = 1 while True: print(i) if i == 10: break i += 1 运行结果 1 2 3 4 5 6 7 8 9 10 P