Pack a widget in the parent widget. Use as options:
after=widget - pack it after you have packed widget
anchor=NSEW (or subset) - position widget according to given direction
before=widget - pack it before you will pack widget
expand=bool - expand widget if parent size grows
fill=NONE or X or Y or BOTH - fill widget if widget grows
in=master - use master to contain this widget
in_=master - see 'in' option description
ipadx=amount - add internal padding in x direction
ipady=amount - add internal padding in y direction
padx=amount - add padding in x direction
pady=amount - add padding in y direction
side=TOP or BOTTOM or LEFT or RIGHT - where to add this widget.
このsideパラメータで位置を決めていますので、組み合わせでどうなるか、ちょっとやってみました。
ソースコード
ソースコードは以下の通りです。
import tkinter as tk
import itertools as it
SIDES = [tk.TOP,tk.BOTTOM,tk.LEFT,tk.RIGHT]
COLORS = ["red","green","blue","yellow","gray"]
class Test(tk.Toplevel):
def __init__(self, master, i, sides):
super().__init__(master)
self.title(str(i))
self.geometry("140x120")
for i, l in enumerate(sides):
label = tk.Label(self,text=l, bg=COLORS[i])
label.pack(side=l)
class App(tk.Tk):
def __init__(self):
super().__init__()
self.title("Pack test")
for i, s in enumerate(it.combinations_with_replacement(SIDES,len(COLORS))):
print(i,s)
t = Test(self, i, s)
t.geometry("+"+str(10 + (i%10)*140)+"+"+str(10 + (i//10)*130))
self.geometry("300x30+900+700")
if __name__ == "__main__":
app = App()
app.mainloop()
$ ps ax | grep php
26168 ? Ss 0:00 php-fpm: master process (/etc/php/7.3/fpm/php-fpm.conf)
26169 ? S 0:00 php-fpm: pool www
26170 ? S 0:00 php-fpm: pool www
29794 pts/0 S+ 0:00 grep php
$
他のは7.4になっていたので、これもバージョンアップしておこうと、以下のコマンドを実行しました。
$ sudo a2enconf php7.4-fpm
よく見ると、上記コマンド実行時のログにこんな風に出力されていました。
NOTICE: Not enabling PHP 7.4 FPM by default.
NOTICE: To enable PHP 7.4 FPM in Apache2 do:
NOTICE: a2enmod proxy_fcgi setenvif
NOTICE: a2enconf php7.4-fpm
NOTICE: You are seeing this message because you have apache2 package installed.
-- カーソル定義
CURSOR c IS SELECT ...;
-- 処理部分
OPEN c;
LOOP
-- FETCH
FETCH c INTO 変数1, 変数2, ...;
-- 終了条件
EXIT WHEN c%NOTFOUND;
-- 1件ごとの処理をここに記述します。
END LOOP;
CLOSE c;