Calculate distance traveled through speed and time driving

Assignment Help Python Programming
Reference no: EM132330134

Question :

You need the code below to calculate Distance Traveled through Speed & Time Driving Versus Miles Per Gallon. You are unable to get the formula to work correctly. First code will be the example, and the second code will be what you have so far.

First Code:

import tkinter as tk

from tkinter import ttk

def click_calculateButton():

miles = float( milesText.get() ) # get miles driven from the miles textfield

gas = float( gasText.get() ) # get gas used from the gas textfield

mpg = miles / gas # do the math!

mpgText.set( round(mpg,1) ) # display the output

def command_exitButton():

root.destroy()

# create root window

root = tk.Tk()

root.title("MPG Calculator")

root.geometry("280x150") # size of window

# create frame and add it to the root window

frame = ttk.Frame(root, padding="10 10 10 10")

frame.pack(fill=tk.BOTH, expand=True)

# create labels and textfields

ttk.Label(frame, text="Miles Driven:").grid(column=0, row=0, padx=5, pady=5, sticky=tk.E) # display label in grid

milesText = tk.StringVar()

ttk.Entry(frame, width=25, textvariable=milesText).grid(column=1, row=0)

ttk.Label(frame, text="Gas Used:").grid(column=0, row=1, padx=5, pady=5, sticky=tk.E)

gasText = tk.StringVar()

ttk.Entry(frame, width=25, textvariable=gasText).grid(column=1, row=1)

# createa button and add it to the window

ttk.Button(frame, text="Calculate", command=click_calculateButton).grid(column=0, row=2, padx=5, pady=5, sticky=tk.E)

ttk.Button(frame, text="Exit", command=command_exitButton).grid(column=1, row=2, padx=5, pady=5, sticky=tk.W)

ttk.Label(frame, text="MPG:").grid(column=0, row=3, padx=5, pady=5, sticky=tk.E)

mpgText = tk.StringVar()

mpgEntry = ttk.Entry(frame, width=25, textvariable=mpgText, state="readonly").grid(column=1, row=3) # notice readonly!

2nd Code:

import tkinter as tk

from tkinter import ttk

def click_calculateButton():

time = float( timeText.get() )

speed = float( speedText.get() )

distance = speed * time

distanceText.set( round(distance,1) )

def command_exitButton():

root.destroy()

root = tk.Tk()

root.title("Distance Calculator")

root.geometry("280x150")

frame = ttk.Frame(root, padding="10 10 10 10")

frame.pack(fill=tk.BOTH, expand=True)

ttk.Label(frame, text="Time Driving:").grid(column=0, row=0, padx=5, pady=5, sticky=tk.E)

timeText = tk.StringVar()

ttk.Entry(frame, width=25, textvariable=timeText).grid(column=1, row=0)

ttk.Label(frame, text="Speed:").grid(column=0, row=1, padx=5, pady=5, sticky=tk.E)

speedText = tk.StringVar()

ttk.Entry(frame, width=25, textvariable=speedText).grid(column=1, row=1)

ttk.Button(frame, text="Calculate", command=click_calculateButton).grid(column=0, row=2, padx=5, pady=5, sticky=tk.E)

ttk.Button(frame, text="Exit", command=command_exitButton).grid(column=1, row=2, padx=5, pady=5, sticky=tk.W)

ttk.Label(frame, text="Distance:").grid(column=0, row=3, padx=5, pady=5, sticky=tk.E)

distanceText = tk.StringVar()

distanceEntry = ttk.Entry(frame, width=25, textvariable=distanceText, state="readonly").grid(column=1, row=3)

Reference no: EM132330134

Questions Cloud

How are the social functions addressed in our culture : What are the origins of the concepts of varna and jati, and why has the varna-jati system of social organization lasted so long? What social needs did they.
Build a dictionary that contains the movie collection : Build a dictionary that contains the movie collection. Combine movie title and director into a list. The response paper should be in APA format.
Write a regular expression that will replace all occurrences : Using the sub() method from the re package substitute all occurrences of the 'pattern' with 'substitution'.Output to the console replace_results.
How did the encounter between indians and europeans shape : How did the encounter between Indians and Europeans shape the development of the early colonies in the Americas? Please include in your paper an analysis.
Calculate distance traveled through speed and time driving : You need the code below to calculate Distance Traveled through Speed & Time Driving Versus Miles Per Gallon.
Describe preliminary analytic thesis statement : Based on your reading of Chapter 8 in Essaying the Past: How to Read, Write, and Think about History, your consideration of feedback received on your Week.
Prepare a program with a function that will flip a coin : You need help creating a program with a function named flipCoin that will flip a coin as many times as the user asks.
Create a program that will read in prices from the user : Create a program that will read in prices from the user and add them to a list. Ask the user in between each price if they want to continue (y/n).
Calculate the most appropriate descriptive statistics : Use the data to answer the following questions: Calculate the most appropriate descriptive statistics for Distance and LeadBefore

Reviews

Write a Review

Python Programming Questions & Answers

  Write a python program to implement the diff command

Without using the system() function to call any bash commands, write a python program that will implement a simple version of the diff command.

  Write a program for checking a circle

Write a program for checking a circle program must either print "is a circle: YES" or "is a circle: NO", appropriately.

  Prepare a python program

Prepare a Python program which evaluates how many stuck numbers there are in a range of integers. The range will be input as two command-line arguments.

  Python atm program to enter account number

Write a simple Python ATM program. Ask user to enter their account number, and print their initail balance. (Just make one up). Ask them if they wish to make deposit or withdrawal.

  Python function to calculate two roots

Write a Python function main() to calculate two roots. You must input a,b and c from keyboard, and then print two roots. Suppose the discriminant D= b2-4ac is positive.

  Design program that asks user to enter amount in python

IN Python Design a program that asks the user to enter the amount that he or she has budget in a month. A loop should then prompt the user to enter his or her expenses for the month.

  Write python program which imports three dictionaries

Write a Python program called hours.py which imports three dictionaries, and uses the data in them to calculate how many hours each person has spent in the lab.

  Write python program to create factors of numbers

Write down a python program which takes two numbers and creates the factors of both numbers and displays the greatest common factor.

  Email spam filter

Analyze the emails and predict whether the mail is a spam or not a spam - Create a training file and copy the text of several mails and spams in to it And create a test set identical to the training set but with different examples.

  Improve the readability and structural design of the code

Improve the readability and structural design of the code by improving the function names, variables, and loops, as well as whitespace. Move functions close to related functions or blocks of code related to your organised code.

  Create a simple and responsive gui

Please use primarily PHP or Python to solve the exercise and create a simple and responsive GUI, using HTML, CSS and JavaScript.Do not use a database.

  The program is to print the time

The program is to print the time in seconds that the iterative version takes, the time in seconds that the recursive version takes, and the difference between the times.

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd