+ 1
How to split one column into two in python? and how to do the same with strings?
Как в Puthon разделить один столбец на два? и как сдклать то же самое со строками? How to split one column into two in python? and how to do the same with strings? Что бы получилось вот так👇🏼 ______________ | |_____| | | | ————————- | | | | ————————-
7 Réponses
+ 5
You mentioned tkinter in your tags. If you want to separate the screen (GUI) itself, use the built in techniques to manage the layout: Frame, grid, pack, place.
https://www.pythonguis.com/tutorials/use-tkinter-to-design-gui-layout/
+ 4
Дмитрий Бендин happy coding!
+ 2
Hi, Дмитрий Бендин !
Is it a table you think about? In Python you can build a matrix with list like:
mtrx = [[1, 2], [3, 4], [5, 6]]
That list of list you can manipulate of course, or are you thinking of something else?
But you need to start with some definition of you table before discussing how to manipulate it.
+ 1
HI, Tibor Santa, thank you very much, I will definitely take your advice!
+ 1
JaScript that's exactly what I needed🙂 thank you!
+ 1
thank you and wish you the same!)