博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Python打印格式化与字符串
阅读量:5137 次
发布时间:2019-06-13

本文共 1553 字,大约阅读时间需要 5 分钟。

关于Python打印格式化与字符串,比较全面的总结,希望对大家有帮助~

 

# -*- coding: cp936 -*-'''打印格式'''print "a"print "b"#结果:a#     bprint "a",print "b"#结果:a b   2个字符串之间有个空格print "a" + "b"#结果:ab   2个字符串之间没有空格了#换行符 \n 的用法print "hello\nworld"#结果:hello#     world#制表符 \t 的用法,控制水平间隔,作用如tab键print "ABC\tDEFG"#结果:ABC    DEFG        \t告诉DEFG从下一个制表点开始print "Number\tSquare\tCube"for i in range (1, 11):    print i,'\t',i**2,'\t',i**3'''结果:Number	Square	Cube1 	1 	12 	4 	83 	9 	274 	16 	645 	25 	1256 	36 	2167 	49 	3438 	64 	5129 	81 	72910 	100 	1000'''#如何打印反斜杠,把2个反斜杠放一起,第一个\告诉python接下来是一些特殊的内容#第二个告诉python这些特殊的的内容就是\字符print "hi\\there"#结果:hi\there'''格式字符串数字格式化'''#在字符串中插入字符串变量name = "lee"print "my name is %s " % name#结果: my name is lee#在字符串中插入整数变量age = 13print "i am is %i years old" % age#结果: i am is 13 years old#在字符串中插入小数变量i = 15.5 print "the num is %f" %i#结果:the num is 15.500000print "the num is %F" %i#结果:the num is 15.500000     i = 12.3456print "%.8f" % i#结果:12.34560000     位数不够就补0dec_number = 12.3456print "it is %.2f degrees today" % dec_number#结果:it is 12.35 degrees today        四舍五入了number = 12.67print "%i" % numberprint "%d" % number#结果:12         直接截断了#     12number = 12.1print "%+f" %number#结果:+12.100000print "% f" %number#结果: 12.100000       注意这2个数是对齐的,其中第二个f前面有一个空格,第二数字前面也有个空格number = 12.3456print "%e" % numberprint "%E" % number#结果:1.234560e+01#     1.234560E+01number1 = 12.3number2 = 456712345.6print "%g" %number1print "%g" %number2#结果:12.3#    4.56712e+08         g换成G一样的,g会相应的换成G,pytho会为大数自动选择e计法,较小的数选择浮点数记发

 

 

转载于:https://www.cnblogs.com/james1207/p/3328918.html

你可能感兴趣的文章
转!!Tomcat网站上的core和deployer的区别
查看>>
OpenLayers
查看>>
XCODE多行代码缩进快捷键
查看>>
PE详解之IMAGE_OPTIONAL_HEADER32 结构定义即各个属性的作用(PE详解03)
查看>>
Linux线程同步---互斥锁
查看>>
神器VNC
查看>>
基础建设者的悲歌
查看>>
2018-2019-1 20165308 20165317 20165331 实验二 固件程序设计
查看>>
IOS 其他 - 如何让 app 支持32位和64位
查看>>
springboot中的日志配置
查看>>
idea,git的使用
查看>>
数据库范式(1NF 2NF 3NF BCNF)
查看>>
LeetCode-Merge k Sorted Lists-合并k个排序链表-自底向上归并排序+链表操作
查看>>
【LeetCode】21. Merge Two Sorted Lists
查看>>
JVM类加载机制(加载,初始化,类加载器和双亲委派机制)
查看>>
python 元组列表转为字典
查看>>
echarts的基本使用
查看>>
极简MarkDown教程(常用样式)
查看>>
【NOIP 模拟赛】区间第K大(kth) 乱搞
查看>>
课后作业-阅读任务-阅读提问-4
查看>>