如何在单独的一行上打印最后一行代码?

时间:2019-11-03 13:55:50

标签: python printing line

我正在尝试将代码的最后一行打印在单独的一行上,因为它始终与微调框打印在同一行上?

我已经尝试删除睡眠功能。

from halo import Halo
import time
from colorama import Fore

name = input("TARGET:\n")

spinner = Halo(text='\nCalling: ' + name, spinner='dots')

spinner.start('\rCalling: ' + name)

time.sleep(5)

print(Fore.GREEN + 'Call Successful! [Internet = POSITIVE]')

我希望在打印时最后一行的输出位于单独的行上。

1 个答案:

答案 0 :(得分:0)

两个选项供您选择。在我的系统(Mac)上,您的代码似乎没有执行应有的功能,它仅打印行的负载而不是微调器。无论如何,这是我希望可以使用的选项:

停止微调器

name = input("TARGET:\n")

spinner = Halo(text='\nCalling: ' + name, spinner='dots')

spinner.start('\rCalling: ' + name)

time.sleep(5)

spinner.stop()

print(Fore.GREEN + 'Call Successful! [Internet = POSITIVE]')

添加换行符

name = input("TARGET:\n")

spinner = Halo(text='\nCalling: ' + name, spinner='dots')

spinner.start('\rCalling: ' + name)

time.sleep(5)

print("\n" + Fore.GREEN + 'Call Successful! [Internet = POSITIVE]')