Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
37% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
2
Posts with Downvotes
2
Downvoting Members
2
1 Commented Post
0 Endorsements
Ranked #4K
~2K People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Tags

4 Posted Topics

Member Avatar for sabbib

I want to use Tkinter funtion to create a a temperature calculator. I have all the code for the calculator, however using Tkinter function i cant figure out how to get the variable input by the users. I am new to python and programming, just started programming less then a …

Member Avatar for Judith_2
0
1K
Member Avatar for GeekTool

you used int, you need to add a 'L' at the end of the number 'l' is ok but it also looks like '1' so use 'L' for lond and 'D' for double. again 'd' works fine, it may not look like any number try to be consistant with you …

Member Avatar for sabbib
0
161
Member Avatar for eoop.org

bro, if you really are new to programming and wish, dream and plan to make large applications, then stop! First you have to start of small, you need to understand how the computer thinks and be able to think the way it think. start with JavaScript, simple as hell, then …

Member Avatar for radc
0
338
Member Avatar for sabbib

[CODE]import string def main(): print ("This program calculates the number of words in a sentence") sent = input("Enter a sentence: ") words = str.split(sent) print ("The total word count is:", len(words)) print ("The total character count-withspace is:", len(sent)) retry = input(''' Would you like to try again?''') if retry == …

Member Avatar for TrustyTony
0
244

The End.