Jan-11-2024, 11:55 AM
hi
I want to write some code in vs code and then run it without saving the code in any place. is it possible?
if it is possible, how can I do it?
for example, I want to run the below code without saving it on my hard drive. is it possible?
thanks
I want to write some code in vs code and then run it without saving the code in any place. is it possible?
if it is possible, how can I do it?
for example, I want to run the below code without saving it on my hard drive. is it possible?
1 2 3 4 |
set_a = { 1 , 2 , 3 , 4 } set_b = { 3 , 4 , 5 , 6 } result_set = set_a + set_b print (result_set) |