Posts by Tiago_Santos • 99 points
4 posts
-
0
votes1
answer2152
viewsQ: Simple App C# console in Visual Studio 2017, closes without showing the result
I’m trying to run a simple program that writes "Hello world" on VS2017: namespace OlaMundo { class Program { static void Main() { int num; System.Console.WriteLine("Número :"); num =…
-
0
votes0
answers150
viewsQ: Transmission Methods Sícrono, Assícrono and Isócrona: How to define the type on site?
It is possible to define the method of data transmission from a website to a user so that it is Sícrono, Assícrono or Isorona?
networksasked Tiago_Santos 99 -
0
votes1
answer164
viewsQ: Integrate Python language to websites. How?
Hello , :-) I am an apprentice in Python, and I have the following question: How can I start integrating the Python language into websites? If possible, what procedures should I follow?…
-
9
votes4
answers41980
viewsQ: Is there any way to comment on multiple lines in Python?
To comment on a line, we use the #. I wonder if it is possible to comment multiple lines in Python 3. If so, how should I?