Python Forum
Search Results
Post Author Forum Replies Views Posted [asc]
    Thread: Is Python used to make popular games that you can play on the Xbox or PlayStation
Post: RE: Is Python used to make popular games that you ...

metulburr---- thank you, thank you for: from direct.showbase.ShowBase import ShowBase from direct.task import Task from math import pi, sin, cos from direct.actor.Actor import Actor from direct.interv...
ironsheep Game Development 15 16,991 Dec-22-2018, 01:39 AM
    Thread: Is Python used to make popular games that you can play on the Xbox or PlayStation
Post: RE: Is Python used to make popular games that you ...

So to make a game at home I would need to continue studying Python, Blender, and how to do animation in Photoshop, right??
ironsheep Game Development 15 16,991 Dec-21-2018, 09:08 PM
    Thread: Is Python used to make popular games that you can play on the Xbox or PlayStation
Post: RE: Is Python used to make popular games that you ...

I clicked on the link for that "Dark Gates" game you inserted in your response. I agree not alot of animation, but when I talk about games I mean games like "Lord of the Rings: Shadow of Mordor" or t...
ironsheep Game Development 15 16,991 Dec-20-2018, 01:05 AM
    Thread: Is Python used to make popular games that you can play on the Xbox or PlayStation
Post: RE: Is Python used to make popular games that you ...

What do you mean by "scripting languages integrated"?
ironsheep Game Development 15 16,991 Dec-18-2018, 08:01 PM
    Thread: Is Python used to make popular games that you can play on the Xbox or PlayStation
Post: Is Python used to make popular games that you can ...

Hi, Do games like "Hearthstone" and "World of Warcraft" made by Blizzard Entertainment use Python?? Is Python used to make popular games that you can play on the Xbox or PlayStation??
ironsheep Game Development 15 16,991 Dec-17-2018, 10:50 PM
    Thread: tkinter questions--- part 2
Post: RE: tkinter questions--- part 2

from tkinter import * import random import time tk=Tk() canvas=Canvas(tk, width=500, height=400) canvas.pack() class Ball: def__init__(self): self.shape = canvas.create_oval(10,10,60,6...
ironsheep GUI 8 4,013 Dec-09-2018, 01:44 AM
    Thread: tkinter questions--- part 2
Post: RE: tkinter questions--- part 2

from tkinter import * import random import time tk=Tk() canvas=Canvas(tk, width=500, height=400) canvas.pack() class Ball: def init_(self): self.shape = canvas.create_oval(10,10,60,60,...
ironsheep GUI 8 4,013 Dec-07-2018, 03:21 PM
    Thread: tkinter questions--- part 2
Post: RE: tkinter questions--- part 2

from tkinter import * import random import time tk=Tk() canvas=Canvas(tk, width=500, height=400) canvas.pack() class Ball: def__init__(self): self.shape = canvas.create_oval(10,10,60,6...
ironsheep GUI 8 4,013 Dec-03-2018, 11:25 PM
    Thread: tkinter questions--- part 2
Post: RE: tkinter questions--- part 2

I still don't get it--- from tkinter import * import random import time tk=Tk() canvas=Canvas(tk, width=500, height=400) canvas.pack() class Ball: def _init_(self): self.shape = canvas...
ironsheep GUI 8 4,013 Dec-02-2018, 10:12 PM
    Thread: tkinter questions--- part 2
Post: tkinter questions--- part 2

from tkinter import * import random import time tk=Tk() canvas=Canvas(tk, width=500, height=400) canvas.pack() class Ball: def init(self): self.shape = canvas.create_oval(10,10,60,60,fil...
ironsheep GUI 8 4,013 Dec-02-2018, 03:53 AM
    Thread: tkinter questions--- part 1
Post: RE: tkinter questions--- part 1

http://effbot.org/tkinterbook/wm.htm ---- I checked it out and it is throwing me off with all this technical stuff-- I am new to python and this article looks like it was made for people who are alrea...
ironsheep GUI 4 2,992 Nov-27-2018, 02:11 AM
    Thread: tkinter questions--- part 1
Post: tkinter questions--- part 1

Why is it that when I put from tkinter import * tk=Tk() canvas=Canvas(tk, width=500,height=550) tk.title("stuff")A small screen appears not following the height and width, but when I put from tkinter...
ironsheep GUI 4 2,992 Nov-23-2018, 10:25 PM
    Thread: why won't my turtle move
Post: RE: why won't my turtle move

Thank you for your help and thank you for your patience import turtle emily= turtle.Turtle() emily.shape("turtle") emily.color("purple") emily.forward(100) emily.forward(200)
ironsheep General Coding Help 6 7,984 Nov-15-2018, 04:17 AM
    Thread: why won't my turtle move
Post: RE: why won't my turtle move

Now things are getting weird, I did do fred=turtle.Turtle(), but now a third arrow has appeared---- you have to test the program out yourself--- I always thought = means "is a", but now everything's g...
ironsheep General Coding Help 6 7,984 Nov-14-2018, 10:51 PM
    Thread: why won't my turtle move
Post: RE: why won't my turtle move

I did as you said, but now there is an arrow at the starting point and this is weird. Why is the computer leaving an arrow at the starting point and why is my first python commands not correct??? i...
ironsheep General Coding Help 6 7,984 Nov-13-2018, 10:37 PM
    Thread: why won't my turtle move
Post: why won't my turtle move

import turtle fred=turtle.Pen() fred=turtle.shape("turtle") fred=turtle.color("purple") fred.forward(100)Error: My error message is Traceback (most recent call last): File "C:/Users/Mitesh Patel/De...
ironsheep General Coding Help 6 7,984 Nov-13-2018, 02:43 AM
    Thread: Caesar Cypher--- I don't understand why it doesn't work
Post: RE: Caesar Cypher--- I don't understand why it doe...

Thank you all for your help. My program is correct and sheep is now furrc. Here is how it looks: alphabet= "abcdefghijklmnopqrstuvwxyz" cleartext= input() cleartext=cleartext.lower() def encrypt(c...
ironsheep General Coding Help 12 5,890 Nov-03-2018, 05:55 PM
    Thread: Caesar Cypher--- I don't understand why it doesn't work
Post: RE: Caesar Cypher--- I don't understand why it doe...

Thank you for the clarification--- I don't understand why the computer doesn't understand what I meant with cleartext_lowercase(). You understood what I was trying to do, how come computers can't?? ...
ironsheep General Coding Help 12 5,890 Nov-02-2018, 09:42 PM
    Thread: Caesar Cypher--- I don't understand why it doesn't work
Post: RE: Caesar Cypher--- I don't understand why it doe...

alphabet= "abcdefghijklmnopqrstuvwxyz" cleartext= input() cleartext=cleartext_lowercase() def encrypt(cleartext): codedtext = " " for character in cleartext: if character in alphab...
ironsheep General Coding Help 12 5,890 Nov-02-2018, 03:25 AM
    Thread: Caesar Cypher--- I don't understand why it doesn't work
Post: RE: Caesar Cypher--- I don't understand why it doe...

alphabet= "abcdefghijklmnopqrstuvwxyz" cleartext= input() cleartext=cleartext_lowercase() def encrypt(cleartext): codedtext = " " for character in cleartext: if character in alphab...
ironsheep General Coding Help 12 5,890 Nov-01-2018, 01:17 AM

User Panel Messages

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