No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
6 Posted Topics
I think most of you out there are professional coders, and software engineers, etc... For the older ones of you, I think the biggest challenge you all had was the space program. What do you all think will be the biggest challenges for my generation? By the way I'm 24 …
I am making a program for my CS class. Is there a way, in python, to set more than one value to a variable? Am I thinking about this in the wrong way? I need to make a program that asks a bank account holder for their username. If that …
Hello everyone! I am a student of the University of Alabama. ROLL TIDE!!!! I am getting a double major in computer and electrical engineering. I joined this site as a way to network with more programmers that are or have been where I am trying to go. I am currently …
I am getting a double major in computer and electrical engineering. It would be an invaluable asset to have contact with someone with your knowledge. I'm new here too, but welcome to the community!
I am new to this whole programming thing. I am currently using python 3.2. I want to get into trying to build GUI, but i can't find any programs that seem to work with python version 3.x. Should I downgrade to an earlier version of python? If so what is …
from random import randint correct = 0 for i in range(10): n1 = randint(1,10) n2 = randint(1,10) prod = n1 * n2 ans = input('What's %d * %d? ' % (n1,n2)) if ans == prod: print('That's Right! Well done.') correct = correct + 1 else: print('No, I'm afraid the answer …
The End.
UaBoy