C 货币 2.5.ToString("C") ¥2.50 D 十进制数 .ToString("D5") E 科学型 .ToString("E") 2.500000E+005 F 固定点 .ToString("F2") 25.00 G 常规 2.5.ToString("G") 2.5 N 数字 .ToString("N") ,,000.00 X 十六进制 .ToString("X
Java的格式化输出等同于String.Format,与C有很大的相似,比如 System.out.printf("%8.2f", x);在printf中,可以使用多个参数,例如: System.out.printf("Hello, %s. Next year, you'll be %d", name, age); 用于printf的转换符如下表: 转换符 类型 举例 d 十进制整数 x 十六进制整数 9f o 八进制整数 f 定点浮点数 15.9 e 指数浮点数
变量是什么? 变量的作用 Variables are used to store information to be referenced and manipulated in a computer program. They also provide a way of labeling data with a descriptive name, so our programs can be understood more clearly by the reader and ourselves
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
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
今天写代码时,需要统一化输出格式进行,一时想不起具体细节,用了最笨的方法,现在讲常见的方法进行一个总结. 一.格式化输出 1.整数的输出 直接使用'%d'代替可输入十进制数字: >>> print 'i am %d years old'%25 i am 25 years old %x —— hex 十六进制 %d —— dec 十进制 %o —— oct 八进制 >>> num=10 >>> print'dec=%d, oct=%o, hex=%x'%