Python Forum
Search Results
Post Author Forum Replies Views Posted [asc]
    Thread: User input/picking from a list
Post: User input/picking from a list

I am trying to figure out how to use user input to select items from a list and display how much the item is. This is what I have so far. # Make a program with user input that shows what items on the...
AnunnakiKungFu General Coding Help 2 2,284 Feb-26-2021, 02:03 PM
    Thread: How do I split the output?
Post: RE: How do I split the output?

Thank you very much!
AnunnakiKungFu General Coding Help 2 1,741 Feb-25-2021, 11:13 PM
    Thread: How do I split the output?
Post: How do I split the output?

Quick and easy question, I am sure. I am creating two lists and then taking one item from each list to create a separate list. When I run the program the output doesn't come out as two different items...
AnunnakiKungFu General Coding Help 2 1,741 Feb-25-2021, 10:34 PM
    Thread: .grid buttons
Post: RE: .grid buttons

Well, I definitely have zero idea of what I am doing. I am TERRIBLE at programming, lol. Your code is amazing. You like, built the entire thing into a tiny code package. I am going to delve into it an...
AnunnakiKungFu GUI 3 1,966 Feb-08-2021, 04:30 PM
    Thread: GitHub question
Post: RE: GitHub question

Thank you! **cool** **tongue**
AnunnakiKungFu News and Discussions 5 2,511 Feb-08-2021, 04:28 PM
    Thread: .grid buttons
Post: .grid buttons

So, I keep having trouble with this and when I ask on the Python FB groups, they can't seem to get what I am asking. Maybe I am asking it wrong? Anyway, in this code, every time I switch the columns, ...
AnunnakiKungFu GUI 3 1,966 Feb-07-2021, 11:09 PM
    Thread: GitHub question
Post: RE: GitHub question

Thank you! I will get to work on learning Git then. :D
AnunnakiKungFu News and Discussions 5 2,511 Feb-07-2021, 11:04 PM
    Thread: GitHub question
Post: GitHub question

I didn't see a specific section for this question, I think. Before I ask, please know that I am new to programming, I am not the smartest person in the world but I am trying my best. I've been reading...
AnunnakiKungFu News and Discussions 5 2,511 Feb-07-2021, 06:02 PM
    Thread: russian roulette
Post: RE: russian roulette

Well, thus far, without having applied any advice, this is what I have: from tkinter import * import random root = Tk() root.title("Russian Roulette") root.geometry("250x300") button_Spin = Button(...
AnunnakiKungFu Game Development 6 7,173 Jan-27-2021, 10:20 PM
    Thread: russian roulette
Post: RE: russian roulette

(Jan-27-2021, 09:34 PM)nilamo Wrote: You could use random.choice(), to pick a random value each time. That would be easy, but wouldn't reflect real life, since you can hit the same chamber multiple...
AnunnakiKungFu Game Development 6 7,173 Jan-27-2021, 09:42 PM
    Thread: russian roulette
Post: russian roulette

I am trying to make a Russian roulette app and I do not know where to start. My biggest issue is figuring out how to actually run the random choice of five empty chambers and a loaded one. Would I lik...
AnunnakiKungFu Game Development 6 7,173 Jan-27-2021, 09:01 PM
    Thread: Button to clear all output labels?
Post: RE: Button to clear all output labels?

Jesus Christ I wish I knew Python a lot better. That is a MUCH more efficient way of doing it.
AnunnakiKungFu GUI 5 2,769 Dec-11-2020, 02:07 PM
    Thread: Would you prefer two 'if' statements or an 'if' and an 'else' statement?
Post: Would you prefer two 'if' statements or an 'if' an...

from tkinter import * import tkinter.messagebox root = Tk() tkinter.messagebox.showinfo("This is the window title!","This is some important info!") answer = tkinter.messagebox.askquestion("What a du...
AnunnakiKungFu General Coding Help 6 2,468 Dec-09-2020, 10:46 PM
    Thread: Button to clear all output labels?
Post: Button to clear all output labels?

from tkinter import * from random import randint def rollD4(): label = Label(root, text=randint(1, 4), font=(None, 12), height=2, width=2).grid(row=0, column=2) def rollD6(): label = Label(ro...
AnunnakiKungFu GUI 5 2,769 Dec-07-2020, 09:28 PM

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020