Questions tagged [python-idle]

IDLE is Python's Integrated Development and Learning Environment. It is part of the standard Python distribution.

IDLE is Python's Integrated Development and Learning Environment. It is part of the standard Python distribution. Though lightweight, it has a fairly rich feature set, including a code editor and a shell (in separate windows). It is written in Python using the tkinter toolkit.

1438 questions
-4
votes
0 answers

I registered with cisco, now it said I should install the latest Python, which is Python 3.11.5 , say i should open idle but its not here,I'm lost

Where can I find idle YouTube and i was expecting Answers.how and where can I find idle on Python 3.11.5 I'm a new student and I'm lost, on cisco it says i should go to "file" but there is no option of file, edit,format,run ect on my python
-4
votes
3 answers

SAME code giving DIFFERENT output in python

I tried to run this code on different python platforms got different output for same python code here are the outputs: Microsoft V.S Code=7654321.0 And python official ide=77316373.73737083 My code is, import…
-4
votes
1 answer

I need a separate frame, same as Python idle on tkinter window

I tried a lot to embedded the python idlw with my tkinter window. Is there any predefined module to embed idle with tkinter window? # -*- coding: utf-8 -*- ## Front Homepage from sklearn import linear_model import matplotlib.pyplot as plt from…
-4
votes
1 answer

Problems in IDLE: can't install numpy

I install some libraries like numpy from my terminal but it doesn't seem to install on my IDLE which says "no module called numpy". What might be the problem?
-4
votes
1 answer

how to sort numbers in a descending order in python?

I have the following code and I want to sort the value of metal in a descending order, I can call each number of them by using the name of the mealtal . the name that I gave for it . for example if I want to call the value of platinum I can use…
Islam MT
  • 61
  • 1
  • 2
-4
votes
1 answer

PseudoCode for Python: finding an item in a list

I'm working on pseudocode for a program that will allow a single listitem to be found in a listofitems. Pseudocode is still a bit of a foreign concept to me, and I could be going about this 110% wrong... so this is the pseudocode... listofitems= [1,…
Sydney
  • 35
  • 1
  • 8
-4
votes
2 answers

PYTHON - text store

My last question was asked wrong. If my code is import os #hard code the path to the external file external_file = '/name.txt' #if file exists, use it to load name, else ask user if os.path.isfile(external_file): name =…
-5
votes
1 answer

What is IDLE stands for?

I have using idle to solve python questions Its a very simple question idle enter image description here
-5
votes
2 answers

What does it mean to "restart" a program (in my case IDLE)?

This answer on Stack Overflow offers a solution I am trying to implement. In particular, see the sections "Installation Instructions" and "How to Use". Can anyone tell me the steps required to "restart" IDLE? New Information: Just as people have…
Waterman
  • 145
  • 7
-5
votes
1 answer

Python: Entire Script 1 Tab backwards?

I want to shift back the entire code 1 tab backwards. Is that possible? What is the key commbination? I am using Idle 3.6.3 on an Mac OSX System. Thanks for the help!
Next TV
  • 31
  • 1
  • 6
-5
votes
1 answer

PYTHON - Uppercase and Lowercase

In my code it is; If 'Laia' in name: But how do I make it so even if they input; LaIa or laiA. No matter what case(upper or lower) it reads as the same thing.
ImSeanDowney
  • 23
  • 1
  • 6
-5
votes
1 answer

When calling recv() the program works very slowly

My code is: http://ideone.com/nVXIQ. recv() functions always idling (it works very slow); it takes several seconds to get the result, and recv() should handle quickly such small amount of data.
Secret
  • 2,627
  • 7
  • 32
  • 46
1 2 3
95
96