Posts by Ricardo Nascimento • 23 points
3 posts
-
0
votes1
answer26
viewsQ: VBA - Copy and paste column to the new tab with the given code
Hello! I have a VBA code in the format below. It takes all the information from column B and sends it to another tab, whenever the value of B1 is changed (only does not create another, if you…
-
1
votes1
answer30
viewsQ: How to write in a file the number typed by the user and the value given by the program?
How can I write only the value typed by the user (the value of n typed by it) and the result given by the program (reply) into a single file? def fibonacci(n): r = [-1]*(n + 1) return fibonacci_2(n,…
pythonasked Ricardo Nascimento 23 -
1
votes1
answer24
viewsQ: How can I save these two python functions in separate files?
I created two functions, one to analyze the primes and the other to analyze the perfect numbers and I would like to know how to save the results obtained for the primes in a file and the other…