Posts
 
Reputation
Joined
Last Seen
Ranked #2K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
0 Endorsements
~928 People Reached

5 Posted Topics

Member Avatar for miltocke

Go to the main Python website (python.org I believe) download the appropriate installer, and go through the tutorials with the included manual.

Member Avatar for Raunikkapoor
0
242
Member Avatar for DecreaseEntropy

I can't do it through the normal way because it's been locked out by administration (I'm at school). I'm just trying to add the Python installation.

Member Avatar for jnawrocki
0
96
Member Avatar for DecreaseEntropy

I'm trying to make a QR encoder that takes a text file of URLs and names and generates QR bar codes with the URLs and names. Can anyone point me in the right direction?

Member Avatar for katmai539
0
184
Member Avatar for DecreaseEntropy

[code] # nth_prime.py def nth_prime(n): primes = [2] test_int = 1 while len(primes) < n: test_int += 2 for p in primes: if test_int % p is 0: break else: if p is primes[len(primes)]: primes.add(test_int) return primes[n - 1] while True: try: num = int(input("Enter a number:\n")) print(nth_prime(num)) except ValueError: …

Member Avatar for woooee
0
250
Member Avatar for basketball8533

You're almost there, you just need a function that mimics min() (does the Java standard library have one?) and substCost(). Looks like there is one, but it only take two arguments. Here is what I have so far: [code] public static int distance(String s1, String s2) { int a = …

Member Avatar for DecreaseEntropy
0
156

The End.