Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Write a python program that outputs your current grade after you input your total points. Include the following: {HINT: Use this python code below to

Write a python program that outputs your current grade after you input your total points.

Include the following:

{HINT: Use this python code below to assist you in comparing dates...

import datetime from datetime import datetime as dateandtime # Get the current date and time current_datetime = datetime.datetime.now() #print("current_datetime", current_datetime) date_time_string="2023-02-13 07:00:00" #HOW TO CHANGE THE DATA TYPE FROM A STRING TO A DATE choose_a_time=dateandtime.strptime(date_time_string,"%Y-%m-%d %H:%M:%S") #type(choose_a_time) if (current_datetime > choose_a_time): print("current_datetime IS >") else: print("current_datetime IS NOT >")

}

1. Submit in writing your pseudo code List in text file format INPUTS --> Pseudo Code --> OUTPUTS

2. (50pts.) Error trap your user input making sure your program only receives an input of your total points.

3. (50pts.) Push the output of your program to BOTH the online screen/Terminal Window AND a text file.

4. (50pts.) Include the following output:

i. Your username/login, who is running the program

ii. The current date/time when you ran the program

iii. Your current total points input

iv. Your accurate letter grade based on the current total points input and based on the current point in time during this quarter.

#Please leave comments; I would be very grateful for the proper solution.


Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Oracle PL/SQL Programming Database Management Systems

Authors: Steven Feuerstein

1st Edition

978-1565921429

More Books

Students also viewed these Databases questions

Question

5. Understand how cultural values influence conflict behavior.

Answered: 1 week ago