Posts by user297 • 119 points
7 posts
-
1
votes1
answer30
viewsQ: How to check the Windows time zone in real time using Python?
I’m trying to get the time zone of the system in real time using Python, I made the code below: import tzlocal tzlocal.get_localzone().zone The problem is, by changing the Windows time zone, the…
-
1
votes0
answers416
viewsQ: How to debug python in Visual Studio Code
I have the following structure and folders and files: DebugTeste |--br |--com |--empresa |--implementacao | |--__init__.py | |--Ola.py | |--testes |--testeOlaMundo __init__.py code: # __init__.py…
-
3
votes1
answer431
views -
0
votes1
answer138
viewsQ: Python set String where the cursor is
Good afternoon I need to set a string where the cursor is stopped. Examples are: - Blinking cursor stopped in a notepad, play a string in the notepad. - Blinking cursor stopped in any input field,…
-
2
votes3
answers141
viewsQ: Program Interface only once
I would like to program the interface of my software only once and through some tool generate the screens for Android, IOS and Web Browser. Some technology today would allow me? I know that Xamarim,…
-
0
votes1
answer34
viewsQ: Avoid Windows compatibility mode
I’m maintaining an old code in c#. The program was installed on Windows 7 at the time it was created, now with Windows 10 it is necessary to run with compatibility mode to work. Compiling with a…
-
4
votes1
answer150
viewsQ: Does Xamarin generate Java source code?
I read that with Xamarin it is possible to program in C# for example, and generate a native application Android and IOS. After programming in C#, does it generate sources in Java? I can after making…