Python 3.2中的Colorama AssertionError [英] Colorama AssertionError in Python 3.2

查看:171
本文介绍了Python 3.2中的Colorama AssertionError的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我最近开始使用Python 3.2,之前从未尝试过编程.我将colorama文件夹复制到C:\ Python32 \ lib的lib目录中,然后尝试基于文本的冒险游戏进行以下代码:

I've recently started using Python 3.2 and have never attempted programming before. I copied the colorama folder to the lib directory in C:\Python32\lib and then made the following code in my attempt at a text-based adventure game:

 import colorama
    from colorama import Fore, Back, Style
    colorama.init()

    notedaction = "You have gained a SWORD AND SHIELD!"
    uniqueskill = "strength"

        if 'strength' in uniqueskill.lower():
           time.sleep(3)
           print('As you are a Warrior, I shall supply you with the most basic tools every Warrior needs.')
           time.sleep(3)
           print('A sword and shield.')
           time.sleep(1)
           print(Fore.RED + notedaction)

但是,每当到达本节代码时,都会出现以下错误:

However, whenever I reach this section of code, I am given the following error:

  File "<pyshell#10>", line 7, in <module>
    print(Fore.RED + notedaction)
  File "C:\Python32\lib\colorama\ansitowin32.py", line 34, in write
    self.__convertor.write(text)
  File "C:\Python32\lib\colorama\ansitowin32.py", line 115, in write
    self.write_and_convert(text)
  File "C:\Python32\lib\colorama\ansitowin32.py", line 140, in write_and_convert
    self.convert_ansi(*match.groups())
  File "C:\Python32\lib\colorama\ansitowin32.py", line 154, in convert_ansi
    self.call_win32(command, params)
  File "C:\Python32\lib\colorama\ansitowin32.py", line 175, in call_win32
    func(*args, **kwargs)
  File "C:\Python32\lib\colorama\winterm.py", line 48, in fore
    self.set_console(on_stderr=on_stderr)
  File "C:\Python32\lib\colorama\winterm.py", line 68, in set_console
    win32.SetConsoleTextAttribute(handle, attrs)
  File "C:\Python32\lib\colorama\win32.py", line 66, in SetConsoleTextAttribute
    assert success
AssertionError

关于什么是错的任何想法?

Any ideas on what is wrong?

推荐答案

似乎是一个问题:

It seems to be an issue of : colorama 0.1.18 with IDLE try in the real python interpretor.

这篇关于Python 3.2中的Colorama AssertionError的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆