324 Posted Topics
Re: Try to find a government job! Those jobs pay well and don't require much effort. | |
Re: Ask around the more senior students for the best teachers. | |
Re: Sounds interesting. You should post this as a code snippet rather than bury in in the back of this thread. | |
Re: Get a Raspberry Pi computer (its Linux OS has C, C++, Ruby, Java and Python) and write some C code to explore its IO pins for computer control projects. Note: Amazon.com has kits real cheap. The Raspberry Pi is usually about $35. | |
| |
Re: The start of a more elaborate editor using the PySide/PyQt GUI toolkit: https://www.daniweb.com/software-development/python/threads/32007/projects-for-the-beginner/14#post1840298 | |
Re: Try file modes "wb" and "rb" Your algorithm will give you non-text characters. | |
Re: Good idea! Would google or Bing be part of it? | |
Re: Use () to change the order: mylist = [6, '/', 3, '+', 9, '+', 8, '+', 1, '/', 2] result = eval(' '.join(str(x) for x in mylist)) print(result) # --> 19 mylist = ['(', 6, '/', 3, '+', 9, '+', 8, '+', 1, ')', '/', 2] result = eval(' '.join(str(x) … | |
Re: The MainForm `__init__` arguments are (self, filename, nesting, separator, parent=None) and should give you a hint The author of the book does not do any necessary commenting and should be discounted. I would return the lousy book. | |
Re: There are a lot of mistakes in that code! Maybe you should study up on Python class and argument passing in Tkinter Button command. | |
Re: Take a look at at: https://www.daniweb.com/software-development/python/code/467452/updated-tiny-tkinter-calculator-python there might be some helpful hints. | |
![]() | Re: We make it mildly easier to write a GUI program, but you have to learn the somewhat obscure Ruby language. This must be an early April joke. ![]() |
Re: Thou shalt not mix grid() and pack() layout managers! | |
Re: What does your colors table look like? What does your traceback error message look like? | |
Re: Changing chr() to unichr() won't help. your algorithm is wrong! | |
Re: I don't think too many folks eat rancid hot dogs for football games. In front of the home TV or the Sports Bar monitors it's chicken wing time, they wash down easily with Budwiser. I hope the Seahawks win against the "deflate balls" Patriots. | |
Re: Do each of the players throw the dice 100 times? | |
Re: Does the MS Internet Explorer work? Don't forget the new https://vivaldi.com/ | |
Re: Good for the beginner: http://learnpythonthehardway.org/book/ | |
Re: Something like: Read through every character in the text file If the character is a vowel add one to the vowel count If the character is a consonant add one to the consonant count If the character is a space add one to the word count If the character is … | |
Re: Don't use any of these malicious bots: Spambots that harvest email addresses from contact or guestbook pages (as used by LinkedIn, Facebook, Twitter) Downloader programs that suck bandwidth by downloading entire web sites Website scrapers that grab the content of websites and re-use it without permission on automatically generated doorway … | |
Re: Are you using Python2 or Python3? '/' changed from an integer division to a float division. | |
Re: You are not using a Python GUI. Do you mean a multiline sentence? Otherwise put your input in a while loop with a break condition. | |
Re: The with statement `with conn:` takes care of conn.commit() and conn.close() | |
Re: Since I am not much of a mindreader, what does your code look like at this time? | |
Re: Play around with this: count = 1 for c in "abcde": s = c * count count += 1 s = s.zfill(5) s = s.replace('0', ' ') print s | |
Re: `ent = Entry(w)` |
The End.