Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~752 People Reached
Favorite Tags
Member Avatar for thatoneguyx

Well I started getting into coding learning the basics of Python and looking into C++ but I'm not sure if it's really something I want to do, so I'm looking to get into and explore web development I'm wondering though where I should start after learning basic HTML? I've read …

Member Avatar for DeViAnT\gAmEr
0
136
Member Avatar for thatoneguyx

How is it different from VB6? Is it mainly for web or what? I've looked around on google and am abit confused.

Member Avatar for Jx_Man
0
49
Member Avatar for thatoneguyx

I'm new to C++ and trying to find a compiler I tried using visual 2008 but it didn't work... then I re-installed it and can't even open it so I need to find something else I need something thats noob-friendly and is updated thanks

Member Avatar for ArkM
0
117
Member Avatar for thatoneguyx

[code] # #hangman.py # import random import sys wlist = ['apple', 'blue', 'house', 'frog'] guessed = [] gright = [] choice = None word = random.choice(wlist) guesses = 0 # add dictionary for category def menu(): while True: print 'Welcome to hangman!' print 'To start a new game type "n"\n' …

Member Avatar for jlm699
0
147
Member Avatar for thatoneguyx

the question is within this example: (using *'s) [code] #!/usr/bin/python # Filename: inherit.py class SchoolMember: '''Represents any school member.''' def __init__(self, name, age): self.name = name self.age = age print '(Initialized SchoolMember: %s)' % self.name def tell(self): '''Tell my details.''' print 'Name:"%s" Age:"%s"' % (self.name, self.age), class Teacher(SchoolMember): '''Represents a …

Member Avatar for thatoneguyx
0
103
Member Avatar for thatoneguyx

I'm doing some exercises from a book and can't figure out these 2 they're fairly simple but I can't figure them out I have to make the docstrings pass for each function [code] def wordset(wordlist): """ >>> wordset(['now', 'is', 'time', 'is', 'now', 'is', 'is']) ['is', 'now', 'time'] >>> wordset(['I', 'a', …

Member Avatar for jlm699
0
82
Member Avatar for thatoneguyx

I have 2 problems -- 1. When I try having IDLE list the modules of python it gives me this error: [code]Traceback (most recent call last): File "<pyshell#7>", line 1, in <module> help() File "D:\Programs\Python\lib\site.py", line 346, in __call__ return pydoc.help(*args, **kwds) File "D:\Programs\Python\lib\pydoc.py", line 1648, in __call__ self.interact() File …

Member Avatar for Scuppery
0
118