Files
2022-09-12 22:32:23 -04:00

11 lines
345 B
Python

# File: Pease-hw1c.py
# Author: PEASE, NICHOLAS
# Date: 12 SEP 2022
# Section: 1002-LAB
# E-mail: nicholas.pease@maine.edu
# Description:
# Program to ask user for number and give square and cube
# Collaboration:
# I discussed this homework with no one
a = float(input("Enter a value:"));print("The square is:",a**2,"\nThe cube is:", a**3)