- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 5
- Posts with Upvotes
- 3
- Upvoting Members
- 5
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
10 Posted Topics
Re: One way to do this is to have your if statement be linked to a string variable and set the string to "F" if the value is less than 60 and setting it to "" if it isn't. if stu_points < 60: (tab) Fstring = "F" else: (tab) Fstring = … | |
Re: Might I suggest the course over at codecademy.com they literally have an assignment that is to create a battleship game. | |
Re: Also the example code and the example error message you gave us are different, the error message has pj+=(swn.senti_synsets(i,'a')[0]).pos_score() and the example code has pj=(list(swn.senti_synsets(i,'a'))[0]).pos_score(). Not sure what you're trying to accomplish with this code, but I'm pretty sure you get your error from code that wasn't shown in the … | |
Re: This bit of code makes the snake move with the arroy keys elif e.type == KEYDOWN: if e.key == K_UP and dirs != 0:dirs = 2 elif e.key == K_DOWN and dirs != 2:dirs = 0 elif e.key == K_LEFT and dirs != 1:dirs = 3 elif e.key == K_RIGHT … | |
I have no idea how to create a Gui from another Gui using python. What I have so far is simply a basic Gui which you select one of the options from a dropdown menu and create another Gui. Here's what I have so far... import sys from tkinter import … | |
Re: The lack of a # in line 49 makes my OCD side sad | |
Re: If you need to find out games that are super popular (even if only for a few weeks) just look at the most viewed games on Twitch.tv . League of Legends is almost always the number 1 most viewed, and Counter Strike: Global Offensive or Hearthstone: Heroes of Warcraft are … | |
I have a problem with a project i'm working on, and I was wondering if it was possible to do what i'm thinking. Basically I have a simple mathematical GUI. I want it to take 2 inputs multiply them and output the answer. I am doing this all through the … | |
I used to love some of these games, and was wondering if anyone knew of any games that were similar. Games are Cookies and Cream, Jak and Dexter: The Precursor Legacy (I think), and Spore. | |
Re: @altjen The people of DaniWeb are here to assist you in making your code by giving examples/hinting at what you are doing wrong. They don't just make code for you. Also, I feel like doing this manually would be a lot easier, and would probably save time in the long … |
The End.