0
When i m running my source code in python then in output it is showing "memory error "
???
7 ответов
+ 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
+ 2
def reverse_num(l):
dem=[]
for i in l:
dem.append(i[::-1])
return dem
file =['new' , 'gen' , 'hai']
print(reverse_num(file))
+ 1
Even when i am writing this it shows memory error
+ 1
I m doing it on visual studio code
+ 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.