python 中的 PRINT 函数

王林
发布: 2024-07-17 11:34:57
原创
1118 人浏览过

PRINT function in python

2024年7月13日

打印()函数

print()函数是一个允许我们输出到屏幕的函数

print() 函数有三种不同的用途;

  1. 单引号 (' ')
  2. 双引号 (" ")
  3. 三引号 (“”” “””)------------用于多行

我们可以使用任何人输入的引号,不能在同一行中使用不同的引号

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() 函数的参数:

分隔参数

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参数,因为这些参数是允许我们处理文件的参数

以上是python 中的 PRINT 函数的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:dev.to
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!