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
~849 People Reached
Favorite Tags
Member Avatar for miltocke

Hello DaniWeb! I am interested in learning computer programming, but have no previous experience. I've been told that Python is a good place to start, so I decided to give it a whirl. If anyone can help point me toward resources geared for the absolute beginner (learning both programming concepts …

Member Avatar for Raunikkapoor
0
237
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
74
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
171
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
221
Member Avatar for basketball8533

Hey guys can you help me convert this code into java... i started a little... [CODE] def  minEditDistR(target, source):    """ Minimum edit distance. Straight from the recurrence. """    i = len(target); j = len(source)    if i == 0:  return j    elif j == 0: return i …

Member Avatar for DecreaseEntropy
0
146