Change keyboard shortcut to comment out lines in Spyder [closed] - python

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 4 years ago.
Improve this question
I recently started using the Spyder IDE (Python 3.6) and I'm having some difficulties getting used to the keyboard shortcuts, which is complicated due to me using an azerty keyboard. The ctrl + 1 keyboard shortcut to comment out lines becomes ctrl + shift + 1 due to this (azerty keyboards only read numbers when holding the shift key). Therefore I was wondering if there was any way to change the keyboard shortcuts in Spyder.
Thank you!

(Spyder maintainer here) To change our shortcuts you need to go to
Tools > Preferences > Keyboard shortcuts
and introduce the one you want to use.

Related

Must everyone who uses my program see the ugly code next to it? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 1 year ago.
Improve this question
I started working on some beginner projects and games to test my abilities.
I found that all I was doing is simply writing a code and seeing the ugly output next to it (in the interactive window). The code works, but that's not how I want a normal user to interfere with it.
I'm looking for a way to display my python program properly to a user. Is there some sort of interface manipulating that I should learn in order to accomplish that? thanks.
It sounds like you're seeking to build a GUI for your programs.
In several of my early projects, I used the built-in Tkinter module to accomplish what you're suggesting. It may not give you the most modern-looking GUI, but it's nice to use due to it being included with Python by default and the abundance of documentation and tutorials.
There are tons of great videos on YT that walk you through step-by-step on everything from pop-up, dialog-box messages, to full on user-input, menu-laden GUIs. Just search "tkinter tutorials".

Minimum System Requirements to run Python & tkinter [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 2 years ago.
Improve this question
I'm making a POS system using Tkinter for my Computing Programming Project and for the program analysis we have to talk about the proposed solution and how we'll go about carrying out the program. For this, it's recommended to talk about system requirements needed to run the program but I'm not very experienced in talking about system requirements so I'm not sure what numbers to mention in terms of RAM, CPU, storage, etc.
Could you give me some basic numbers that you'd expect a computer to have in order to run a POS program similar to this one?

What does "cx_" prefix stand for in package names? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 4 years ago.
Improve this question
I see cx_ prefix in package names like cx_Oracle or cx_Freeze. What does it mean? If it's an acronym, how to decrypt it?
You'd better ask the author about that)
However, I have a strong theory that it's derived from "Computronix" - the name of the company Anthony worked for:
These are a bunch of projects that I have worked on at Computronix and which they have agreed to release as open source. See Computronix Open Source Utilities.
CX_ stands for "customer experience".
e.g The "Oracle CX cloud" is the "Oracle Customer Experience Cloud"
http://searchcrm.techtarget.com/definition/Oracle-Customer-Experience-Cloud-Oracle-CX-Cloud

iPython notebook not loading [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 8 years ago.
This question appears to be off-topic because it lacks sufficient information to diagnose the problem. Describe your problem in more detail or include a minimal example in the question itself.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Improve this question
So my iPython notebook comes up in my browser (chrome) and when I open my specific notebook a new tab opens. However the work does not load up! The page also freezes. Is this an iPython issue or something wrong with the file? Was working yesterday. I've restared comp etc. but no luck
Update: just tried renaming notebook to open again with no luck
Update 2: One has now shown up - but can't do anything with it! Is iPython simply extremely extremely slow...
Is it possible that one of the cells got a lot of output data?
if so,
try editing the file manually (with notepad++ or something like this), and delete cell's output

How To Make An ArcGIS 10 Toolbox [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I'd like to make a new toolbox for ArcGIS 10.
While I have found resources on making Python scripts and the like, I have not yet found any examples or documentation regarding making Toolboxes.
Could someone point me in the right direction? Examples of toolbox codes/setup are much appreciated.
Making a new (empty) toolbox is very easy.
Simply right click on a folder in the Catalog window and choose New | Toolbox.
This is described in the Online Help.
Once you have a toolbox you just right click on that to Add Script and follow the wizard. The help link above should lead you to documentation on all of that.
Pay particular attention to how you define parameters on the tool to correspond with your GetParameterAsText statements in the script.
If you get stuck the GIS Stack Exchange has many thousands of ArcPy Q&As.

Categories

Resources