Question
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
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started