• Member Avatar for DragonMastur
    DragonMastur

    Replied To a Post in PyEditor1.2

    vegaseat I tryed to but it didn't work I dont know whats wrong. But Thanks anyway Everyone.
  • Member Avatar for DragonMastur
    DragonMastur

    Replied To a Post in Optional Funtions

    Thanks guys.
  • Member Avatar for DragonMastur
    DragonMastur

    Created Username and Password Athentcation

    I am try to make a program that alows the user to input their username and password to recive a set of options. Right now the options are to look …
  • Member Avatar for DragonMastur
    DragonMastur

    Began Watching Username and Password Athentcation

    I am try to make a program that alows the user to input their username and password to recive a set of options. Right now the options are to look …
  • Member Avatar for DragonMastur
    DragonMastur

    Replied To a Post in PyEditor1.2

    I have done a lot of work on it and have a 1.5.8 version of it. Unfortunitly I got mad at the computer and took it apart. So I still …
  • Member Avatar for DragonMastur
    DragonMastur

    Created KeyPress Detection

    I want to make a game that requires the arrow keys to be pressed. How do I detect if a key has been pressed?
  • Member Avatar for DragonMastur
    DragonMastur

    Began Watching KeyPress Detection

    I want to make a game that requires the arrow keys to be pressed. How do I detect if a key has been pressed?
  • Member Avatar for DragonMastur
    DragonMastur

    Created PyEditor1.2

    This is a PyEditor I made because I couldn't get a IDLE working on windows 95.
  • Member Avatar for DragonMastur
    DragonMastur

    Began Watching PyEditor1.2

    This is a PyEditor I made because I couldn't get a IDLE working on windows 95.
  • Member Avatar for DragonMastur
    DragonMastur

    Stopped Watching Program Ideas

    Anybody have ideas for some basic python programs???
  • Member Avatar for DragonMastur
    DragonMastur

    Marked Solved Status for Program Ideas

    Anybody have ideas for some basic python programs???
  • Member Avatar for DragonMastur
    DragonMastur

    Created Optional Funtions

    Is it posible to have an optional veriable in a funtion? Such as this: >>>def Say(msg, (optional)): >>> print msg >>> print optional >>> >>>Say('hi', 'option') hi option >>>Say('not') not …
  • Member Avatar for DragonMastur
    DragonMastur

    Began Watching Optional Funtions

    Is it posible to have an optional veriable in a funtion? Such as this: >>>def Say(msg, (optional)): >>> print msg >>> print optional >>> >>>Say('hi', 'option') hi option >>>Say('not') not …
  • Member Avatar for DragonMastur
    DragonMastur

    Began Watching As a beginner, what IDE should I use?

    I only started learning Python a few days ago, so as a beginner, what IDE should I be using? Should I just start with IDLE, then move on to something …
  • Member Avatar for DragonMastur
    DragonMastur

    Replied To a Post in As a beginner, what IDE should I use?

    I have made a py editor which you can open save and run files. It is in python and is .py so you can just run as is. import sys …
  • Member Avatar for DragonMastur
    DragonMastur

    Began Watching Python ideas.

    Hello there DANIWEB! Now I know that there are already many different discussions asking for python ideas for beginners, but I thought maybe this could be a discussion for all …
  • Member Avatar for DragonMastur
    DragonMastur

    Replied To a Post in Python ideas.

    **Expert** PyEditor1.0 from Tkinter import* import tkDialog as tk_Dialog from Stringl0 import Stringl0 import os recents = [] class PyEditor: def doNew(self): self.text.delete(0.0,END) def doUndo(self): self.text.edit_undo() def doSaveAs(self): file = …
  • Member Avatar for DragonMastur
    DragonMastur

    Created Program Ideas

    Anybody have ideas for some basic python programs???
  • Member Avatar for DragonMastur
    DragonMastur

    Began Watching Program Ideas

    Anybody have ideas for some basic python programs???
  • Member Avatar for DragonMastur
    DragonMastur

    Began Watching Downloading the file and cancel it

    Hi all, I need some help regarding how to cancel the connection from my server using the urllib2 library. I want the database to stop writing the data away as …
  • Member Avatar for DragonMastur
    DragonMastur

    Replied To a Post in Downloading the file and cancel it

    Make sure to import on this one! from msvcrt import getch keypress = 0 stopDown = 0 def keys(TargetKey): while keypress = 0: key = getch() if key == TagetKey: …
  • Member Avatar for DragonMastur
    DragonMastur

    Began Watching Counting decimals

    I am working on a code that searches a folder gets a specific part of the file name and adds 1 to a file counter. There are some files in …
  • Member Avatar for DragonMastur
    DragonMastur

    Replied To a Post in Counting decimals

    I'am using different imports and python 3 import tkinter.filedialog as tk_FileDialog from tkinter import* fileCount = 0 for x in range(0,10) #read as many as you want f = tk_FileDialog.askopenfile(mode='r') …
  • Member Avatar for DragonMastur
    DragonMastur

    Began Watching With - Creating Read

    I am having an error file object when opening and reading a text file(csv). I must be misusing the with so that when I call the function race table its …
  • Member Avatar for DragonMastur
    DragonMastur

    Replied To a Post in With - Creating Read

    I made a PyEditor so here are a few of the lines from it: import sys if sys.hexversion >= 0x030000F0: #First find which version and imports to import runningPython3 = …