鱼C论坛

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

[已解决]关于最新版python教程的课后作业的问题

[复制链接]
发表于 2020-11-10 15:11:44 | 显示全部楼层 |阅读模式

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

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

x

课后作业-第015讲:了不起的分支和循环(II)

课后作业-第015讲:了不起的分支和循环(II)

麻烦大家看一下截图,我的代码:
n = int(input("请输入一个自然数:"))

for i in range(1000):
    if n%2 ==0:
        print(n,'/2=',int(n/2))
        n =int(n/2)
    else:
        print(n,'*3+1=',int(n*3+1))
        n = (n*3+1)
    if n == 1:
        break

效果:

课后作业-第015讲:了不起的分支和循环(II)我的答案

课后作业-第015讲:了不起的分支和循环(II)我的答案


麻烦请问一下,如何才能像小乌龟展示的那样没有空格啊?我的每个print都有一个非常诡异的空格。
最佳答案
2020-11-10 15:14:58
#把print()函数的sep参数改为''就行了
print(n,'/2=',int(n/2))
#改为print(n,'/2=',int(n/2),sep='')

print(n,'*3+1=',int(n*3+1))
#改为print(n,'*3+1=',int(n*3+1),sep='')

>>> 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()函数sep参数的默认值就是空格,把它设置为空字符串就行了
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-11-10 15:14:58 | 显示全部楼层    本楼为最佳答案   
#把print()函数的sep参数改为''就行了
print(n,'/2=',int(n/2))
#改为print(n,'/2=',int(n/2),sep='')

print(n,'*3+1=',int(n*3+1))
#改为print(n,'*3+1=',int(n*3+1),sep='')

>>> 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()函数sep参数的默认值就是空格,把它设置为空字符串就行了
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-11-10 15:15:00 | 显示全部楼层
本帖最后由 Twilight6 于 2020-11-10 15:16 编辑


print 函数 中有个 sep 参数,默认 sep 是等于一个空格 用来分隔打印 print 函数里的参数的

sep = '' 空字符,就不会打印出空格了,如果想像甲鱼哥图片那样,建议 等于号前后加一个空格~

参考代码:
n = int(input("请输入一个自然数:"))

for i in range(1000):
    if n%2 ==0:
        print(n,'/2 = ',int(n/2),sep='')
        n =int(n/2)
    else:
        print(n,'*3+1 = ',int(n*3+1),sep='')
        n = (n*3+1)
    if n == 1:
        break
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 1 反对 0

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-1-17 22:03

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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