print(« *********************************************** ») print( » Hello world » ) print(‘ I am so happy learning python:)’ ) print(« *********************************************** »)
Donnez un programme qui permet de créer l'interface suivante:
Déduire le résultat réalisé par le programme suivant:
from tkinter import * from random import randint def chooseColor(): global color
col=[« green », ‘red’, ‘yellow’, ‘blue’, ‘grey’] # list of colors randNumber =
randint(1, 5)
color = col[randNumber] return color def clearCan():
canva.delete(ALL) # draw a line def drawLine(): global color
canva.create_line(100, 100, 422, 220, fill=color)