couverture_texte.py

Created by julien-bernon

Created on November 17, 2022

523 Bytes

Affiche tour à tour les caractères ascii et calcule le nombre de pixel que chaque lettre occupe afin de les classer de la plus couvrante à la moins couvrante : on peut ensuite en faire une échelle pour de l’ascii_art


from kandinsky import *

def lire():
    sortie = 0
    for x in range(15):
        for y in range(18):
            if str(hex(get_pixel(x,y)[0]))[2]!="f":
                sortie += 1
    return sortie

scores={ }

for i in range(32, 127):
    draw_string(chr(i),0,0)
    temp = lire()
    if not temp in scores.keys() :
        scores[temp] = [chr(i)]
    else :
        scores[temp].append(chr(i))
    #print(scores)

vals = sorted(list(scores.keys()))

for i in vals:
    print(i," : ",scores[i])

During your visit to our site, NumWorks needs to install "cookies" or use other technologies to collect data about you in order to:

With the exception of Cookies essential to the operation of the site, NumWorks leaves you the choice: you can accept Cookies for audience measurement by clicking on the "Accept and continue" button, or refuse these Cookies by clicking on the "Continue without accepting" button or by continuing your browsing. You can update your choice at any time by clicking on the link "Manage my cookies" at the bottom of the page. For more information, please consult our cookies policy.