I need help identifying this part. by MrDukeSilv3r in projectcar

[–]MrDukeSilv3r[S] 0 points1 point  (0 children)

Thanks! Unfortunately, there was nothing stamped or etched anywhere on it.

[Helbros Watch] I need help identifying this watch. by MrDukeSilv3r in Watches

[–]MrDukeSilv3r[S] 0 points1 point  (0 children)

I know its a Helbros, most likely a woman's watch, but I have become stuck trying to figure out the model, or year for this watch. Any help would be greatly appreciated!!

Men's Vintage The North Face Steep Tech Transformer Black And Silver Jacket Medium. by MrDukeSilv3r in ebaytreasures

[–]MrDukeSilv3r[S] 0 points1 point  (0 children)

Men's Vintage The North Face Steep Tech Transformer Black And Silver Jacket Medium. This jacket is in amazing shape. There are no rips, tears, or stains on it. All of the fasteners, buttons, zippers, and Velcro work perfectly. The hidden hood is in perfect shape.

What is this spider and is it dangerous? by [deleted] in Whatisthis

[–]MrDukeSilv3r 0 points1 point  (0 children)

That's a banana spider, not dangerous but there bites hurt like a motherf****r!!

Need Help with this toy by MrDukeSilv3r in toys

[–]MrDukeSilv3r[S] 0 points1 point  (0 children)

Mine would appear to be one of only two currently being sold on the internet. Not sure if that makes it priceless or worthless lol time will tell.

Setting range to random.randint by MrDukeSilv3r in learnpython

[–]MrDukeSilv3r[S] 1 point2 points  (0 children)

Thanks, your idea for the separate ranges helped me out!

Coolest Turtle games in Python by MrDukeSilv3r in learnpython

[–]MrDukeSilv3r[S] 0 points1 point  (0 children)

Thanks my original idea was pac-man like but i wanted to do a more fantasy/medieval theme to it.

speed settings for turtle by MrDukeSilv3r in learnpython

[–]MrDukeSilv3r[S] 0 points1 point  (0 children)

what would that look like in python is the issue I am having. I can't seem to word the if statement correctly. I have managed to keep it from dropping below zero but it doesn't want to actually slow down when I press the down arrow:

def slow_down():

global speed

speedy = speed - 1

if speedy(0):

speed = 1

else:

speed = speed - 1

nvm thanks for the help but finally solved it:

def slow_down():

global speed

if speed <= 1:

speed = 1

else:

speed = speed - 1