鱼C论坛

 找回密码
 立即注册
查看: 1654|回复: 2

[已解决]print(' ',end = '')

[复制链接]
发表于 2020-10-27 22:12:04 | 显示全部楼层 |阅读模式

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

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

x
temp = input('请输入一个整数:')
number = int(temp)
while number:
    i = number - 1
    while i:
        print(' ', end = '')
        i = i - 1
    j = number
    while j:
        print('*', end = '')
        j = j - 1
    print()
    number = number - 1
请问这串代码的print里面的内容是什么意思,一个循环结束后为什么会换行。
最佳答案
2020-10-27 22:21:56
print()默认是打印完字符串会自动添加一个换行符,end=" "参数告诉print()用空格代替换行
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-10-27 22:21:56 From FishC Mobile | 显示全部楼层    本楼为最佳答案   
print()默认是打印完字符串会自动添加一个换行符,end=" "参数告诉print()用空格代替换行
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-10-27 22:27:11 | 显示全部楼层
本帖最后由 笨鸟学飞 于 2020-10-27 22:28 编辑

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.

======以上是函数帮助文档======
sep=' '     #意思你函数内输入多个参数,默认用空格隔开
end='\n' #意思你函数内结尾不自定义参数,则默认用换行结尾
======验证=================
>>> print(1,2,3)
1 2 3
>>> print(1,2,3,sep='')  #自定义sep=空字符串,而不是默认的空格
123
>>> print('hello world',end='\n\n')  #比默认的多一个换行符
hello world
                                                    #换了2行
>>> print('hello world')
hello world
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-1-18 04:38

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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