Print on python3

来自linux中国网wiki
Evan讨论 | 贡献2020年5月5日 (二) 07:55的版本 (创建页面,内容为“=py3= <pre> 用例如下: s = 'Hello' x = len(s) print("The length of %s is %d" % (s,x)) #Print :The length of Hello is 5 下…”)
(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)
跳到导航 跳到搜索

py3


用例如下:

    s = 'Hello'  
    x = len(s)  
    print("The length of %s is %d" % (s,x))  
     
    #Print :The length of Hello is 5  


下面是关于格式化输出的一些总结:


(1). %字符:标记转换说明符的开始


(2). 转换标志:-表示左对齐;+表示在转换值之前要加上正负号;“”(空白字符)表示正数之前保留空格;0表示转换值若位数不够则用0填充


(3). 最小字段宽度:转换后的字符串至少应该具有该值指定的宽度。如果是*,则宽度会从值元组中读出。



https://blog.csdn.net/liao392781/article/details/80579004