#!/usr/bin/env python # -*- coding: utf-8 -*- from tkinter import * root = Tk() w=Label(root, text="Bonjour !") w.pack() root.mainloop()