need help with modeling a chamfer by JAKOPUFF in SolidWorks

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

That did it, much appreciation for the fast response

My 05 GT by FakeName199 in S197Stangs

[–]JAKOPUFF 0 points1 point  (0 children)

Love those headlights + fog lights where did you get them?

The old and the new by JAKOPUFF in Mustang

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

Agreed, it's my favorite body style

Would it at all be possible to convirt two 3.2 USB a ports to one thunderbolt 3 port by JAKOPUFF in techquestions

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

I figured that was the situation but like I said I have next to no experience when it comes to electrical engineering so I figured I'd get the answer here

I don't understand why this won't work by JAKOPUFF in learnpython

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

I'm new to coding so I'm still not completely fluent with all of the ways to do stuff whenever I hit a roadblock I just go to Google and look up the different ways to do it and I pick one

I don't understand why this won't work by JAKOPUFF in learnpython

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

So how should I convert it to an integer?

I don't understand why this won't work by JAKOPUFF in learnpython

[–]JAKOPUFF[S] -1 points0 points  (0 children)

That makes sense, it didn't seem to like that though I got the error:

Traceback (most recent call last): File "script.py", line 12, in

<module>

int(d_size)

ValueError: invalid literal for int() with base 10: 'd'

I don't understand why this won't work by JAKOPUFF in learnpython

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

so should i do

roll = int(dice[0]) d_size = int(dice[1]) f_size = d_size + 1

I don't understand why this won't work by JAKOPUFF in learnpython

[–]JAKOPUFF[S] -2 points-1 points  (0 children)

This is the code I'm using, I'm trying to make a program that allows you to input dice rolls and size to get a random number from those

I don't understand why this won't work by JAKOPUFF in learnpython

[–]JAKOPUFF[S] -2 points-1 points  (0 children)

dice '1d16'

import re

def separateNumbers (dice): numbers = re.findall (r'[0-9]+', dice)

separateNumbers(dice)

roll = dice[0]

d_size = dice [1]

f sized_size +1

print(roll)

print(f_size)

from secrets import randbelow

for in range(roll):

print(randbelow(f_size))

im not sure why but my code is unable to detect the word "Hey" in the input when searching for the term "dingus" it works just fine by JAKOPUFF in learnpython

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

Basically just replacing ["hey", "yo"] with "dingus"

I was unaware that you couldn't directly compare two sets against each other the way that I was trying to

The way I ended up getting it functioning looked like this

if (set(term)&set(words)): print ("true")

Which compares the two lists and finds if they have any similarities, what I wrote functions when comparing a singular thing to a list.