18305177067 发表于 2023-2-13 22:02:08

代码有部分不明白,请求大佬帮助

for i in range(1,10):
    for j in range(1,i+1):
      print(j,'*',i,'=',j*i,end='')
    print('\n')
麻烦问一下第4行代码,后面end=''的作用是什么

isdkz 发表于 2023-2-13 22:06:32

print打印默认会在结尾加换行符,不想让它换行就得指定 end=''

>>> help(print)
Help on built-in function print in module builtins:

print(*args, sep=' ', end='\n', file=None, flush=False)
    Prints the values to a stream, or to sys.stdout by default.

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

>>>

所以你要只是换行的话就用 print() 就可以了,print('\n') 会换两行

cflying 发表于 2023-2-13 22:06:40

看说明文档

cflying 发表于 2023-2-13 22:09:12

https://docs.python.org/zh-cn/3/library/functions.html#print

dolly_yos2 发表于 2023-2-13 22:10:56

cflying 发表于 2023-2-13 22:09
https://docs.python.org/zh-cn/3/library/functions.html#print

支持正义 RTFM
顺便也可以 STFW/F,这个论坛里这个问题就被问了无数次了

cflying 发表于 2023-2-13 22:17:24

dolly_yos2 发表于 2023-2-13 22:10
支持正义 RTFM
顺便也可以 STFW/F,这个论坛里这个问题就被问了无数次了

哈哈,你是理解到位了{:10_254:}
页: [1]
查看完整版本: 代码有部分不明白,请求大佬帮助