Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

#Assaignment 1 . py # Get the user's name name = input ( Please enter your name: ) print ( Hello World,

#Assaignment1.py
# Get the user's name
name = input("Please enter your name: ")
print("Hello World, from "+ name +"!")
# Print an additional message
print("I am very excited to learn coding!")
#Assaignemnt 2.py
#get user input
user_input = input("Enter a number: ")
# Calculate the square of the input number
square = float(user_input)**2
# Print the square
print("Square of the input number:", square)
# Determine if the input is a triangle or not
shape_input = input("Enter a shape (triangle or another shape): ")
if shape_input.lower()== "triangle":
# If the shape is a triangle, calculate the area
base = float(input("Enter the base of the triangle: "))
height = float(input("Enter the height of the triangle: "))
area_of_triangle =(height * base)/2
print(f"The area of the triangle is: {area_of_triangle}")
elif shape_input.lower()== "square":
# If the shape is a square, calculate and print the square again
square = float(user_input)**2
print("Square of the input number:", square)
else:
# If the shape is neither triangle nor square, print a message
print("Unsupported shape. Please enter either 'triangle' or 'square'.") turned these codes into loop python

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

Google Analytics 4 The Data Driven Marketing Revolution

Authors: Galen Poll

2024th Edition

B0CRK92F5F, 979-8873956234

More Books

Students also viewed these Databases questions

Question

l Define training and identify two types of training.

Answered: 1 week ago

Question

Discuss five types of employee training.

Answered: 1 week ago

Question

Identify the four federally mandated employee benefits.

Answered: 1 week ago