Python Forum

Full Version: Not working in PyCharm, Is this IDE specific ?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I try running this-

>>>test = [[1, 2 , 3 ,4 ,5 ,6 ,7 ,8 ,9 ,10],['a' ,'s' ,'d' ,'f' ,'g' ,'h' ,'j' ,'k' ,'l' ]]

>>>test[1]

Works great in IDLE but give no output in PyCharm (just get this- Process finished with exit code 0)

Why please ?

Not working in PyCharm, Is this IDE specific ?
Are you in command mode in pycharm?
if not, you need to print it:
print(test[1])