Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
2
Posts with Upvotes
2
Upvoting Members
2
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
Ranked #22.6K
Ranked #3K
~10K People Reached
Favorite Tags

8 Posted Topics

Member Avatar for turntomyleft

There are many differring opinions on where someone should go to learn programming, or even just simply a new language. I would be honored to help a notable member of computer history (working with tape and punch cards is enoughfor note IMO).... That is, if you would like any help …

Member Avatar for vegaseat
0
784
Member Avatar for CodeWarrior14

I would Recommend you look into how ASCII coding of characters works, it will make things like this a lot easier. also, I would recommend you look into the uppercase and lowercase functions. Also when you do the encrypt function, you can do something more like: chars = list(message) for …

Member Avatar for vegaseat
0
373
Member Avatar for DuduGuy

You need to start with a skeleton of a program that will compile/run. Then you need to add the ability prompt for, and read/store a number. Then, you need to break that number into its component parts. Then, with those component parts you need to determine what the textual equivalent …

Member Avatar for davidnelson4911
0
273
Member Avatar for Larry_6

Arrays are zero indexed, as you see when you seek to the 0 possition in the file and replace that position with a single 'Z' character. generally I recommend sticking to a specific indetation format with spacing between lines more often. as for execution: First it is creating your buffers, …

Member Avatar for davidnelson4911
0
333
Member Avatar for mark103

Well, addControls is for adding new controls. If you want to add a bunch of controls, get a full listing of them, then modify their dimensions, you will require either: A) a modifyControls() method. However this will likely result in communicating with the database 3 or more times per button. …

Member Avatar for TrustyTony
0
248
Member Avatar for kkk122

there are 2 ways to fix, A: single quotes `'D:\New Folder\file.py'` and B: Proper Escaping `"D:\\New\ Folder\\file.py"`

Member Avatar for tinstaafl
0
7K
Member Avatar for lewashby

If you have the permissions on the files set properly when they are put into the tar.gz archive then: `sudo tar -xpvzf filename.tar.gz` Will A: Ensure that it is run as root, B: Preserve the permissions of the files to the same as when compressed, and C: make like 100000x …

Member Avatar for rubberman
0
707
Member Avatar for itsthewendigo1111

first I would add an object to take care of holding the player's turn counts: `playerTurns = [0 for x in range(playercount)]]` And then, wherever a player's turn ends(Keep track of which player is which as well...) simply increment the proper count: if turnEnds: playerTurns[player] += 1

Member Avatar for davidnelson4911
0
324

The End.