2,206,232 questions
0
votes
0
answers
19
views
3-D game following guided tutorial trying to make Doom
I'm following a tutorial building a Wolfenstein-style raycaster in Python/pygame. The 3D projection is working like I can move around but the walls look very flat almost like it's 2D. I showed a ...
1
vote
0
answers
55
views
Cannot open google drive folders in a colab notebook, even though It's the correct path
I'm currently following a tutorial on how to build an image recognition model. Since I'm on Linux and too scared to fuck up my system if I use anaconda, I'm trying to make it in google colab, and ...
-5
votes
0
answers
29
views
Use variables in output for file name and path [duplicate]
I have tried multiple ways to get this to work but it's not working as simply as the other answers to Stack Overflow questions have for others.
I can run this just fine with no troubles: df_combined....
-6
votes
1
answer
93
views
Nested For Loop does not contain outer for loop variable [closed]
i have a project with following code
for route in routing_map
for profile in profiles
breakpoint() // i am printing route here
test_variable = 5;
breakpoint()
I am ...