Message from Python discussions

December 2018

— I can make a shitty block for this xD

— 

Create two lists, one with the numbers and one is empty.

` num = [2, 3, 5, -2 ..etc]
` num_state = []
`
` for i in num:
` If i >= 0:
` num_state.append(‘Positive’)
` else:
` num_state.append(‘Negative’)
` print(num_state)

— 

num = [2, 3, 5, -2, -6, 4, -8, 8, -9, -7]
num = sorted(num)
temp = [(num[-i-1], num[i]) for i in range(int(len(num)/2))]
new_num = []
for t in temp:
new_num.extend(t)
print(new_num)

Message permanent page

— How can i make Entry box in tkinter bigger by height?

— pythonres

— How to make an Application using python language or software...

— Does any one know this...

— I'm finding Python.org docs best

— You write code

— Ahh I see but how can you say pycharm is better can you answer it. Got no idea

— Better autocompletion, support go to template file from views, template completing object property from views.py, good bebugger, good support javascripts. very good inspection... and many more.

Message permanent page

— Sublime is an editor not IDE.