2024年7月13日
print()函数是一个允许我们输出到屏幕的函数
print()函数有三种不同的用途;
我们可以使用任何人输入的引号,不能在同一行中使用不同的引号
print()---------------------------#create empty line
print("jothilingam")--------------#string should print with""
print(5)------------------------#number can print without ""
print("jo""jo")--------------print without space print("jo" "jo")--------------print without space answer jojo print("jo","jo")--------------print with space answer jo jo
使用 f 字符串打印
name = "jothi" print(f"Hello {name}") # Output : Hello jothi
换行符\n
print("jo\nthi") jo thi
分隔参数
print("jo","jo",sep="_")...................sep="" is default answer jo_jo
print("jo", "lingam", sep='thi') answer jothilingam
结束参数
print("jothi",end="lingam") answer jothilingam
print("jothi",end="")----------------without space print("lingam") answer jothilingam
print("jothi",end=" ")----------------with space print("lingam") answer jothi lingam
* 范围
print(*"jothilingam") answer j o t h i l i n g a m
file和flush参数,因为这些参数是允许我们处理文件的参数
免责声明: 提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发到邮箱:[email protected] 我们会第一时间内为您处理。
Copyright© 2022 湘ICP备2022001581号-3