虾但不子 2023-03-24 19:35 采纳率: 100%
浏览 30
已结题

无效退格键和输出彩色字符

img


我想要使用退格键,但为什么输出一个方块?
不应该输出 plann吗?
另外一个问题

img


我想输出红色的字符,但为什么不行?

  • 写回答

1条回答 默认 最新

  • a5156520 2023-03-24 19:49
    关注

    以转义序列的形式输出彩色字符有些Windows系统好像是不支持的,在linux下支持;

    如果要在windows下输出彩色字符可以使用python标准库colorama模块,下面的代码应该是可以在Windows的cmd下显示彩色字符(但仍不可以在IDLE下显示彩色字符),并使用了\b来回退一个字符。

    测试代码如下:

    参考链接:


    
    
    # http://www.ay1.cc/article/1674826887219315330.html
    # -----------------colorama模块的一些常量---------------------------
    # Fore: BLACK, RED, GREEN, YELLOW, BLUE, MAGENTA, CYAN, WHITE, RESET.
    # Back: BLACK, RED, GREEN, YELLOW, BLUE, MAGENTA, CYAN, WHITE, RESET.
    # Style: DIM, NORMAL, BRIGHT, RESET_ALL
    #
     
    from colorama import init, Fore, Back, Style
    init(autoreset=True)
    class Colored(object):
     
      # 前景色:红色 背景色:默认
      def red(self, s):
        return Fore.RED + s + Fore.RESET
     
      # 前景色:绿色 背景色:默认
      def green(self, s):
        return Fore.GREEN + s + Fore.RESET
     
      # 前景色:黄色 背景色:默认
      def yellow(self, s):
        return Fore.YELLOW + s + Fore.RESET
     
      # 前景色:蓝色 背景色:默认
      def blue(self, s):
        return Fore.BLUE + s + Fore.RESET
     
      # 前景色:洋红色 背景色:默认
      def magenta(self, s):
        return Fore.MAGENTA + s + Fore.RESET
     
      # 前景色:青色 背景色:默认
      def cyan(self, s):
        return Fore.CYAN + s + Fore.RESET
     
      # 前景色:白色 背景色:默认
      def white(self, s):
        return Fore.WHITE + s + Fore.RESET
     
      # 前景色:黑色 背景色:默认
      def black(self, s):
        return Fore.BLACK
     
      # 前景色:白色 背景色:绿色
      def white_green(self, s):
        return Fore.WHITE + Back.GREEN + s + Fore.RESET + Back.RESET
     
    color = Colored()
    # https://blog.csdn.net/sgzqc/article/details/126354619
    print(color.red('I am red!\b!'))
    print(color.green('I am gree!\b!'))
    print(color.yellow('I am yellow!\b!'))
    print(color.blue('I am blue!\b!'))
    print(color.magenta('I am magenta!\b!'))
    print(color.cyan('I am cyan!\b!'))
    print(color.white('I am white!\b!'))
    print(color.white_green('I am white green!\b!'))
    

    img

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论 编辑记录

报告相同问题?

问题事件

  • 系统已结题 4月2日
  • 已采纳回答 3月25日
  • 创建了问题 3月24日

悬赏问题

  • ¥20 机器学习能否像多层线性模型一样处理嵌套数据
  • ¥20 西门子S7-Graph,S7-300,梯形图
  • ¥50 用易语言http 访问不了网页
  • ¥50 safari浏览器fetch提交数据后数据丢失问题
  • ¥15 matlab不知道怎么改,求解答!!
  • ¥15 永磁直线电机的电流环pi调不出来
  • ¥15 用stata实现聚类的代码
  • ¥15 请问paddlehub能支持移动端开发吗?在Android studio上该如何部署?
  • ¥20 docker里部署springboot项目,访问不到扬声器
  • ¥15 netty整合springboot之后自动重连失效