鱼C论坛

 找回密码
 立即注册
查看: 1055|回复: 1

[已解决]新手小白求解疑

[复制链接]
发表于 2022-3-11 10:05:57 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
>>> name = input("请输入您的名字:")
请输入您的名字:小甲鱼
>>> print("你好", name, sep=",", end="!") ——这句为什么这么写呀,不是说字符串是成双成对吗?那中间的name,sep=",end==" 起到什么作用捏
你好,小甲鱼!
最佳答案
2022-3-11 10:09:46
>>> help(print)
Help on built-in function print in module builtins:

print(...)
    print(value, ..., sep=' ', end='\n', file=sys.stdout, flush=False)

    Prints the values to a stream, or to sys.stdout by default.
    Optional keyword arguments:
    file:  a file-like object (stream); defaults to the current sys.stdout.
    sep:   string inserted between values, default a space.
    end:   string appended after the last value, default a newline.
    flush: whether to forcibly flush the stream.

>>>

从 print 的帮助文档可以看出,print 有 4 个关键字参数,

其中 sep 为打印后的间隔符,默认为空格,

end 为打印的结尾,默认为换行符,

所以 print("你好", name, sep=",", end="!") 是让 你好 和 name 之间以 “,” 作为间隔,以 “!” 作为打印的结尾
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2022-3-11 10:09:46 | 显示全部楼层    本楼为最佳答案   
>>> help(print)
Help on built-in function print in module builtins:

print(...)
    print(value, ..., sep=' ', end='\n', file=sys.stdout, flush=False)

    Prints the values to a stream, or to sys.stdout by default.
    Optional keyword arguments:
    file:  a file-like object (stream); defaults to the current sys.stdout.
    sep:   string inserted between values, default a space.
    end:   string appended after the last value, default a newline.
    flush: whether to forcibly flush the stream.

>>>

从 print 的帮助文档可以看出,print 有 4 个关键字参数,

其中 sep 为打印后的间隔符,默认为空格,

end 为打印的结尾,默认为换行符,

所以 print("你好", name, sep=",", end="!") 是让 你好 和 name 之间以 “,” 作为间隔,以 “!” 作为打印的结尾
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-12 01:43

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表