打印空行Python的功能

时间:2018-05-09 01:29:19

标签: python function parameters

我需要创建一个名为nine_lines的函数,此函数将使用另一个名为three_lines的函数来打印九个空行。

这就是我所拥有的,使用3.4

  #creating a function within a function
  def new_line():
      print()
  def three_lines():
      new_line()
      new_line()
      new_line()
  def nine_lines():
      three_lines()
      three_lines()
      three_lines()
  nine_lines

打印......

  >>>  ================================RESTART================================        
  >>> 
  >>>

1 个答案:

答案 0 :(得分:2)

 #creating a function within a function
  def new_line():
      print()
  def three_lines():
      new_line()
      new_line()
      new_line()
  def nine_lines():
      three_lines()
      three_lines()
      three_lines()
  nine_lines()

我认为你错过了'()'在九线之后回调函数。

打印9行的另一种方法是使用循环:

for i in range(9):
    print()