Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use warnings;
    ...
    my $t = $w->Label(-text => 'Sample', -font => ['Arial', 20, 'bold', 'u
    +nderline'])->pack;
    say ${ $t->cget('-font') };
    MainLoop();
    
  2. or download this
    #!/usr/bin/python3
    from tkinter import Tk, Label
    ...
    t.pack()
    print(t.cget('font'))
    w.mainloop()
    
  3. or download this
    Arial 20 bold underline