网站防火墙 *{margin:0;padding:0;color:#444} body{font-size:14px;font-family:”宋体”} .main{width:600px;margin:10% auto;} .title{background: #20a53a;color: #fff;font-size: 16px;height: 40px;line-height: 40px;padding-left: 20px;} .content{background-color:#f3f7f9; height:280px;border:1px dashed #c6d9b6;padding:20px} .t1{border-bottom: 1px dashed #c6d9b6;color: #ff4000;font-weight: bold; margin: 0 0 20px; padding-bottom: 18px;} .t2{margin-bottom:8px; font-weight:bold} ol{margin:0 0 20px 22px;padding:0;} ol li{line-height:30px} 网站防火墙 您的请求带有不合法参数,已被网站管理员设置拦截! 可能原因: 您提交的内容包含危险的攻击请求 如何解决: 检查提交内容; 如网站托管,请联系空间提供商; 普通网站访客,请联系网站管理员;

在Python中,print() 函数非常灵活,支持多种格式的输出。以下是一些常见的格式化输出方法:

一、print()输出格式

1. 基本输出

print("Hello, World!")

2. 输出变量

name = "Alice" 
print("Hello,", name)

3. 使用逗号分隔符

x = 10 
y = 20 
print(x, y, sep=', ') # 使用逗号和空格作为分隔符

4. 使用str.format()方法

name = "Bob" 
age = 25 
print("Name: {}, Age: {}".format(name, age))
print("age={:.2f}".format(age))#25.00

5. 使用f-string(Python 3.6+)

name = "Charlie" 
age = 30 
print(f"Name: {name}, Age: {age}")

6. 输出不同类型的数据

x = 10 
y = 20.5 
z = "Hello" 
print("x:", x, "y:", y, "z:", z)

7. 格式化数字和浮点数

pi = 3.1415926 
print("Pi: {:.2f}") # 输出两位小数 
print("Pi: {:.3f}") # 输出三位小数

8. 格式化为整数

num = 3.99 
print("Num: {:d}") # 格式化为整数

9. 格式化输出列表

numbers = [1, 2, 3, 4, 5] 
print("Numbers: ", end="") 
print(numbers) # 输出列表

10. 多行字符串输出

poem = """Twinkle, twinkle, little star, 
How I wonder what you are!""" 
print(poem)

11. 条件输出

condition = True 
if condition: 
    print("Condition is True") 
else: 
    print("Condition is False")

12. 使用end参数控制行尾字符

print("Hello", end=", ") 
print("World!")

13. 输出字典

person = {"name": "Dave", "age": 42} 
print("Person:", person)

14. 输出对象的字符串表示

class Person: 
    def __str__(self): 
        return "Person Object" 

person = Person() 
print(person) # 输出对象的字符串表示

二、超级大吐槽

作为一个C++深度钻研爱好者,刚开始学Python,感觉很烦,一个输出函数整这么复杂,各种格式混为一谈,大小中括号分不清,该省不省,不该省的都省了,{}改成:,大可不必。

PS:别骂俺,容俺再学两天感受一下

作者:小玉abc

物联沃分享整理
物联沃-IOTWORD物联网 » 网站防火墙 *{margin:0;padding:0;color:#444} body{font-size:14px;font-family:”宋体”} .main{width:600px;margin:10% auto;} .title{background: #20a53a;color: #fff;font-size: 16px;height: 40px;line-height: 40px;padding-left: 20px;} .content{background-color:#f3f7f9; height:280px;border:1px dashed #c6d9b6;padding:20px} .t1{border-bottom: 1px dashed #c6d9b6;color: #ff4000;font-weight: bold; margin: 0 0 20px; padding-bottom: 18px;} .t2{margin-bottom:8px; font-weight:bold} ol{margin:0 0 20px 22px;padding:0;} ol li{line-height:30px} 网站防火墙 您的请求带有不合法参数,已被网站管理员设置拦截! 可能原因: 您提交的内容包含危险的攻击请求 如何解决: 检查提交内容; 如网站托管,请联系空间提供商; 普通网站访客,请联系网站管理员;

发表回复