Character Analysis Program Programming Software Development by tjy92 … strings, but also basic concepts of Python. Im at a begginners skill level, and Im stuck. Much help would be GREATLY… database design(inventory system) Programming Databases by carmzy …...I need some help from you guyz. I'm still begginners on database design. I was ask to make an inventory… Looking to get into programming. (for game development in specific) Programming Game Development by Will_5 … languages recently to see which one is the best for begginners like me and suits the kindove thing I am going… Re: What program language should a beginner use? Community Center by swaira umar hi i suggest GWBasic for the begginners as its very easy and good language for begginners .You can leran java and C too as it will be useful in future too. Re: turning userinput into a text file Programming Software Development by Lazaro Claiborn … not here for debates, I'm here to help the begginners. I was a begginner once, everyone is, and I got… Re: Intranet Programming Web Development by Duki Ah ok. Do you know of any good books I could purchase for a begginners guide to ASP.NET? Re: DreamWaver help Digital Media UI / UX Design by Shanti C you just copy and paste the examples from w3schools and any other and then run then in IE or firefox,then you will get the output... and try to edit the code in which way you want... read the materials about html and css... [url]www.w3schools.com[/url] is best for begginners... Re: PHP Tutorial Part One: Getting Started with PHP Programming Web Development by jueric Am very glad with the begginners tutorial with the php program..am really looking forward to part two of it.its surely interactive..if possible can i be sent the tutorial in my mail? Re: Character Analysis Program Programming Software Development by TrustyTony Good luck, we are always ready to help, you only have to post in your code and explain where you have difficulty. Re: database design(inventory system) Programming Databases by zeroliken Have you created an ER Diagram as a guide for creating the database? > So far, these are my tables that i make.but i think this is wrong.and i am confuse on this and what are the tables that i needed in the inventory system are those tables you posted the description/details from the actual tables found in the database? need more info on what… Re: database design(inventory system) Programming Databases by Dili1234 you will have to write the coding in mysql 5.5 command clients......... http://www.w3schools.com/php/php_mysql_intro.asp http://php.net/manual/en/book.mysql.php Re: Character Analysis Program Programming Software Development by carolinedecunzo I'm having this problem as well. I don't need to print the file, I just need to analyze. Here's my code. def main(): file=input("Enter the filename: ") infile = open(file,'r') cap_count=0 low_count=0 space_count=0 dig_count=0 for ch in infile: if ch.isupper():… Re: Character Analysis Program Programming Software Development by Nuggi.McNuggets I don't know if this is was what you wanted :) def main(): infile = open('whatever.txt','r') file = infile.readlines() cap_count=0 low_count=0 space_count=0 dig_count=0 for lines in file: for ch in lines: if ch.isupper(): cap_count… Re: Looking to get into programming. (for game development in specific) Programming Game Development by Hiroshe If you really want to write video games, then you can get there. And we can help you get there. Keep in mind, most modern video games would require a team of employed programmers to develop. You won't be writting anything too profesional without a lot of time on your hands. Also keep in mind while I'm saying this that no-one's mastered the art of… Re: Looking to get into programming. (for game development in specific) Programming Game Development by Will_5 I looked a bit into and it seemed all fine an dandy! I trust your recommendation and I hope I can understand it well enough to build a good foundation for C and hopefully C# (long term, I want to become an effective unity programmer) You said "How to Design Programs" was used by MIT so I may find it difficult to read/comprehend as I am a… Re: Looking to get into programming. (for game development in specific) Programming Game Development by Hiroshe The book is availible online for free I should mention (it's part of MIT opencourseware). The table of contents is [here](http://htdp.org/2003-09-26/Book/curriculum-Z-H-1.html). The second edition is also good, and it might be easier to understand [here](http://www.ccs.neu.edu/home/matthias/HtDP2e/). They both cover simular material, so the choice … Re: Looking to get into programming. (for game development in specific) Programming Game Development by Will_5 Thank you! That was actually pretty motivating. I'm determined to learn what this book has to teach me now. :D Re: Looking to get into programming. (for game development in specific) Programming Game Development by jwenting And don't start trying to write games until you're a pretty decent programmer AND designer, it'll only end in tears. Games are complex pieces of code, you'll get utterly swamped. Re: Character Analysis Program Programming Software Development by Kevin_27 Will this program work with python 3.5.2. Re: Character Analysis Program Programming Software Development by Reverend Jim I see that the print statement uses parentheses which tells me this is 3.x code so it should work. Is it too much work for you to copy/paste the code and try running it yourself?