Message from Python discussions

November 2018

— This is my problem !

— 

def connectWin():
global name ,ip
window = tk.Toplevel(root)
window.title('Enter an address')
window.geometry("260x70")
ip_num = tk.Entry(window)
ip_num.insert(0, 'Type here')
ip_num.grid(row=0, column=1)
tk.Label(window, text="IP address: ").grid(row=0)
ip = '172.16.10.172'
username = tk.Entry(window)
username.insert(0, 'Type here')
username.grid(row=1, column=1)
tk.Label(window, text="Username: ").grid(row=1)
name ='root'
ok_button = tk.Button(window, text='OK', fg="black",command=openPrompt)
ok_button.grid(column=1, row=2)
return

how can i get values for name and ip from what the user inputing in the entries?
and i want it to be submitted aith the ok button
(with entry.get() it just takes the default of what there is in there)

— Https://hastebin.com/guqoxucidu.coffeescript

— Hello, can you send me a good reference about "find"?

— Is it worth to learn Julia?

— Is it worth learning Julia? - Quora
https://www.quora.com/Is-it-worth-learning-Julia

— 😁😁😁

— Unlimited uber referrals available for USA people message me days with your referral codes deal only for USA citizens

Message permanent page

— I think so

— Has anybody worked with google colab? It doesn't see a file even if it lies in the same folder where the notebook lies

Message permanent page

— Its not accessible from Colab unless you actually go through the auth cycle (hint: use pydrive) I usually find it easier to upload the file using files.upload for each session if the size isn't that big.

Message permanent page

— Yes, I have found this issue on stackoverflow. However, it didn't really help. The thing is that the file I am working with is very huge. Thanks

Message permanent page