0

When i m running my source code in python then in output it is showing "memory error "

???

16th Jul 2020, 12:59 PM
Amratesh Dixit
Amratesh Dixit - avatar
5 odpowiedzi
+ 4
1. Share your code link. Seriously you can't ask people for help when they don't even know what you're doing. 2. Please use relevant tags for your thread. At least specify a relevant language (Python) instead of writing a plea in it. Follow the below guide to sharing your code link 👇 https://www.sololearn.com/post/75089/?ref=app
16th Jul 2020, 1:08 PM
Ipang
+ 2
def reverse_num(l): dem=[] for i in l: dem.append(i[::-1]) return dem file =['new' , 'gen' , 'hai'] print(reverse_num(file))
16th Jul 2020, 1:30 PM
Amratesh Dixit
Amratesh Dixit - avatar
+ 1
Even when i am writing this it shows memory error
16th Jul 2020, 1:31 PM
Amratesh Dixit
Amratesh Dixit - avatar
+ 1
I m doing it on visual studio code
16th Jul 2020, 1:38 PM
Amratesh Dixit
Amratesh Dixit - avatar
+ 1
Oddly, I don't get any error running that code 🤔 Is it possible there's something wrong with VSC? try to run other Python code, if it goes the same then perhaps you need to reinstall VSC clean.
16th Jul 2020, 11:18 PM
Ipang