Ask Your Question

Bryan's profile - activity

2024-03-05 21:35:50 +0200 received badge  Popular Question (source)
2024-01-27 09:21:56 +0200 received badge  Notable Question (source)
2022-11-29 19:45:39 +0200 received badge  Popular Question (source)
2020-06-08 01:40:38 +0200 commented answer Align Tables with show

This is exactly what I needed, thank you a lot!

2020-05-31 16:42:42 +0200 received badge  Editor (source)
2020-05-31 16:05:49 +0200 asked a question Align Tables with show

I currently have a problem with tables. I want to show them at the right side of the output box. For whatever reason, align does nothing to my table.

To explain exactly my problem, I currently have a Graph G and a Table T. I want them to be displayed one left and the other one, right (so you can extract data from them without scrolling).

This is my current code:

T = table([['a', 'b', 'c'], [1,2,3]])
T.options(align='right')

G = Graph({0:[1,2]})
show(T)
show(G)

Thank you in advance for your time!

EDIT: I'm using the Jupyter notebook

2020-05-31 15:44:12 +0200 commented answer How to delete print()

Thank you!

2020-05-31 15:43:59 +0200 received badge  Supporter (source)
2020-05-02 16:32:15 +0200 received badge  Student (source)
2020-05-02 14:20:45 +0200 asked a question How to delete a print() output

I want to do print a loading String, while a heavy function is loading and to delete it afterwards:

print("Loading...")
callFunction() 
delete print

I've already tried with python syntax, and nothing works apparently. Does anyone of you know a solution? Thank you in advance.

2020-05-02 14:20:45 +0200 asked a question How to delete print()

I want to do print a loading String, while a heavy function is loading and to delete it afterwards:

print("Loading...")
callFunction() 
delete print

I've already tried with python syntax, and nothing works apparently. Does anyone of you know a solution? Thank you in advance.