コード例 #1
0
ファイル: hello.py プロジェクト: ninjamuffin10111/hello-1
def print_merica(message):
    """Fills the screen with politically correctly colored <message>.
    
    Args:
        message (str): message to print 

    """
    print(c.clear)
    while True:
        print(c.merica(message), end=" ")
コード例 #2
0
ファイル: hello.py プロジェクト: ninjamuffin10111/hello-1
def print_merica(message):
    """Fills the screen with politically correctly colored <message>.
    
    Args:
        message (str): message to print 

    """
    print(c.clear)
    while True:
        print(c.merica(message), end=" ")
コード例 #3
0
ファイル: hello.py プロジェクト: MrCleanSpleen/hello
def print_murica(message):
    """Prints a message in red, white and blue. #Murica"""
    print(c.cl)
    while True:
        print(c.merica() + message, end =" ")