Posts
 
Reputation
Joined
Last Seen
Ranked #3K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
5
Posts with Upvotes
3
Upvoting Members
5
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
3 Commented Posts
0 Endorsements
Ranked #4K
~14.0K People Reached
Favorite Tags

10 Posted Topics

Member Avatar for grand_78

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 = …

Member Avatar for Brandon Hatch
0
203
Member Avatar for anonstu3

Might I suggest the course over at codecademy.com they literally have an assignment that is to create a battleship game.

Member Avatar for Brandon Hatch
0
212
Member Avatar for lavanyarao

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 …

Member Avatar for Brandon Hatch
0
326
Member Avatar for SagarK95

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 …

Member Avatar for BustACode
0
442
Member Avatar for Brandon Hatch

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 …

Member Avatar for Brandon Hatch
0
2K
Member Avatar for lost_scotsman
Member Avatar for MasterChat

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 …

Member Avatar for newcoder310
0
5K
Member Avatar for Brandon Hatch

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 …

Member Avatar for Brandon Hatch
0
232
Member Avatar for Brandon Hatch

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.

Member Avatar for exsoft
0
3K
Member Avatar for altjen

@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 …

Member Avatar for altjen
0
252

The End.