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
~454 People Reached
Favorite Forums
Favorite Tags
Member Avatar for paramaster

Hello :D Im new to your forums as well to programing. Ive started with python and some guide called "how to think as programmer", something like that. The guide is very good and starting from basics. On the other hand, im student, curentlly with IGCSE diploma and now heading for …

Member Avatar for paramaster
0
164
Member Avatar for paramaster

So yeah, i figured out how to write program that will print digits in reverse(with small help of the internet, put i get it). Anyway i want to write program that will print digits in their regular order. [CODE]def num_digits(n): count=0 while count <= abs(n): count = count + 1 …

Member Avatar for TrustyTony
0
103
Member Avatar for paramaster

Hello daniweb community, i'm new to all this and i'm pretty happy that found this. Anyway i'm having sevral issues. Frist one is: my Python GUI (IDLE) won't open program. [CODE]def num(n): count=0 while count <= abs(n): count = count + 1 n= abs(n)/10 print count num(-23) [/CODE] This code …

Member Avatar for paramaster
0
187