Message from Python discussions

December 2018

— Pycharm is much better..

— 

My list is like this

num = [2, 3, 5, -2, -6, 4, -8, 8, -9, -7]
I want list as
num =[positive number,negative number, positive number, negative number.....]

— 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)

Message permanent page

— 

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