• Member Avatar for vegaseat
    vegaseat

    Replied To a Post in Super Bowl XLIX

    It was a good game. The halftime show was exotic. The best commercial IMHO was the one from Fiat (blue pill).
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in What's the best Python GUI framework?

    PySide is the official LGPL-licensed version of PyQT.
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for Projects due in 2days, help pls

    def fileToString(filename): myFile = open(filename, "r") myText = "" for ch in myFile: myText = myText + ch return myText def countVowels(text): vcount = 0 vowels = ['a','e','i','o','u'] for letter …
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for Do Your Own Homework

    Hi All, This is a rant as well as a discussion. First, some background: On this forum and another forum I frequent I have been seeing a lot of the …
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in Jokes

    Don't use the joystick without the latest drivers.
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in Super Bowl XLIX

    I used to go to the Milwaukee Brewers games and they had German Brats and Leinenkugel beer, a real gourmet feast. For the Superbowl I will go to a friend's …
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in Starting Python

    Some interesting itertools applications ... ''' itertools_groupby101.py exploring the Python itertools module itertools.count(start=0, step=1) itertools.groupby(iterable, key) ''' import itertools as it import string # us an iterable string for testing …
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for What is this code doing(Rapid Gui Programming with Python and Qt)

    Hello!First of all,I'm so sorry for this huge post!!I wrote the whole code from the book,that's why the post is so big!!I'm reading this book : Rapid Gui Programming with …
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for Algorithm help please

    Need help with writing an algorithm: Department Store Sale! Prompt the user to enter the sticker price of each of the clothing items they’re purchasing (make sure all input prices …
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for How To Print Out A List Of Strings ?

    Hi all I have got a problem with the list of strings. I have got the full list of strings, but I can't be able to print for each string …
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for python program help

    teacher assigned out of the book "python programming: an introduction to computer science. second edition. page 384 # 19 is as follows this below is verbatim from the book and …
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for Python and Matlab

    Hello! I'm trying to transform working Python code to Matlab code. It's Simpson's rule. But MatLab code is not working. What should I change for in this code? Python: from …
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for python program for zig-zag star pattern. how to print the following pattern

    * * * * * * * * * * * * * * * * * * * * * *
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for SENTENCE GENERATOR

    A series of different parts of sentences will be randomly put together to come up with new interesting sentences. using with Random, Integers, Print, Strings, Breaks, Functions, For, Range
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for two newb questions

    I'm learning python (and programming in general) through Runestone Interactive. What do people think of that site as a place for beginners to learn python? Also, is there any harm …
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for need help polishing script

    As part of a study exercise I wrote a procedural script and would like to ask whether anyone has a more polished version. Your version can be procedural or object …
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in Jokes

    About time for a blonde joke ... A blonde cop stops a blonde motorist and asks for her driver's license. The motorist digs around in her purse but can't find …
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for format specifiers

    What operation does this format specifier "\a" really perform
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for help pleaseee

    ``Bookkeeping You work for a company which mainly trades with 3 other companies. You record your balance in a file (you can still use cin or scanf to read or …
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for Compiler

    Why graphics.h file doesn't work in dev c++ and code blocks?
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for ali asad

    plz help
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for Program using nested For loops

    How to write a program using nested for loop to display the following output: 0 * * 0 1 2 * * * * 0 1 2 3 4 * …
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for Need a clear help with dump and load in pickle

    Hello! I have a file with a list and 3 functions in it; view, append and sort functions. I want to use pickle to save data changes in to another …
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for problem with creating a file

    Hello everybody! Me again with an other question :) I have a file with a list and 3 functions in it; view, sort, append. I used pickle to save data …
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for Problem with Tkinter code (button and label)

    Hello friends :) This is my code: #!/usr/bin/env python3 # -*-coding: utf8-*- def callback(): lbl.configure(text = 'button clicked!') import Tkinter window = Tkinter.Tk() window.geometry('300x300') window.configure(background = 'PeachPuff3') lbl = Tkinter.Label(window, …
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for Breaking down a list in python

    Hello! My this time question is about breaking a list. I have a list with the name favorite_movies. Here is 2 functions of all functions from the file: def add(): …
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for Problem with installing ttk module

    Hi everybody. How can i install ttk module on linux? When i try to import and use it on my Tkinter window, the error says sth like there is no …
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for Problem with running the program

    Hi friends! I'm coding a program; i have a Tkinter window with a view button and i can add names with entry box and add button into a list that …
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in Jokes

    A man walks into a bar and asks for 1.4 root beers. The mixologist says "I'll have to charge you extra, that's a root beer float". The man says "In …
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in Jokes

    A group of software folks take a trip through the mountains when the car's brakes fail and they end up in a ditch. The software analyst amongst them suggests: "Let's …
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in Would you play your laptop in bed???

    Not right now, I have a nasty cold.
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for Isaac Newtons theory about the earth falling to the sun.

    I know this sound weird but What will happen if the earth fell into the sun some kids say why does the moon not fall down well thats a beautiful …
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in Random Facts

    About 75% of exploits abused by cybercrime groups take advantage of flaws in Adobe's Flash, Acrobat and Reader programs. Source: http://www.bbc.com/news/technology-30948123
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in Problem with installing ttk module

    ttk is included with Python27 on Debian Linux. What is your exact traceback error message?
  • Member Avatar for vegaseat
    vegaseat

    Edited Raspberry Pi LED control (Python)

    Well I done it! Got bored after the holidays and bought a Raspberry Pi credit card sized computer ($35), the least expensive LED TV and a Logitech wireless Keyboard/Mouse combo. …
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in How to proceed to make a good carrer in IT with python

    C++ and Python complement each other, so you should have a good knowledge of those two languages. Once you are learning C++ then Java isn't far off. Unless you are …
  • Member Avatar for vegaseat
    vegaseat

    Created Raspberry Pi LED control (Python)

    Well I done it! Got bored after the holidays and bought a Raspberry Pi credit card sized computer ($35), the least expensive LED TV and a Logitech wireless Keyboard/Mouse combo. …
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in How can I take the results and auto copy to clipboard?

    Install pywin32-219.win32-py3.4.exe If you don't have Python34 get the appropriate installer version. After that simply use the functions supplied by the snippet.
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for What is the best language to learn?

    Im personally learning how to program in python though I do know of other languages. Is Python the best to learn off?
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for Help!!!

    I have a computer science project and it has all to do with list and such could someone please help me with it!
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for Cant get my button to work properly for my game

    I"ve been working on this dice game for the past few days. I made sure the game itself worked properly then I added a draw dice function that would show …
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for Python Newbie

    Hi guys Just started to get into Python so this site seems liek a gtreat resource for hints and tips. Nice to meet you all. Ben
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for help in string combinations

    hii I have a list having m1 m2 m3........ m922 and in each there are a1 a2 a3 a4 are there like m1=a1 a2 a3 a4 a5 a6 m2=a1 a2 …
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for Find the list of elements from arrays

    Hi guys, I'm working on my python script to get the list of elements in the arrays. I'm using the variable `position_x = elem.getX()` to get the list of pixel …
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for which class structure is better?

    Which class structure is better for what purposes. This one: class Text: def __init__(self, passage): self.s = passage def read_text(self): return self.s def grow(self, sentence): self.s = self.s + sentence.s …
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for AttributeError: 'MyClass' object has no attribute

    Hi guys I need a bit of your help. I've created the variables that I want to store a list of arrays outside the for loop. I have got a …
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for Storing a list of arrays after the for loop

    Hi guys, I'm creating the width size for the buttons when I'm getting a list of arrays so I can store the buttons size in a database. The types of …
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for Transfer Data b/w Linux machine

    Hello everyone, I am working on Linux PC and want to make a program to get data from RaspberryPi(another Linux machine). Both machines are connected together by CAT5 cable directly …
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for Python countdown timer

    Hi. I am not exactly new to python but I have never done anything related to time and I don't know how. I want to make a count down timer …
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for Trigger File Execution on Secondary PC with Python

    Hey all. I'm facing a bit of a challenge and and having a hard time trying to figgure out how do do this. Basically I have two computers (Raspbery Pi's) …

The End.