PLEASE DO THIS IN PYTHON!!!!!!!!
1.) For each lab program you develop, make sure to include the following header - replace the dots with your section #, semester, your full name, your instructor’s name, and lab #:
Class: CSE 1321L
Section: ...
Term: ...
Instructor: ...
Name: ...
Lab#: ...
Make sure to put the correct comment character(s) before the above lines in each file. C# & Java use // for comments, Python uses a #
Exercise #1: Design and implement a program (name it Favorites) to print out on separate lines the following: your name, your birthday, your hobbies, your favorite book, and your favorite movie. Format the outputs following this sample run.
Sample run:
My name: Amy Edwards
My birthday: 12/21/1998
My hobbies: Reading, writing, baking
My favorite book: Each Little Bird That Sings
My favorite movie: The Series of Unfortunate Events
2.) Exercise #2: Design and implement a program (name it Diamond) to print out the following shape using stars:
*
* *
* * *
* * * *
* * *
* *
*
# Program1:
name = 'Amy Edwards'
birthday = '12/21/1998'
hobies = 'Reading, writing, baking'
favBook = 'Each Little Bird That Sings'
favMovie = 'The Series of Unfortunate Events'
print('My name:', name)
print('My birthday:', birthday)
print('My hobbies:', hobies)
print('My favorite book:', favBook)
print('My favorite movie:', favMovie)
# Program2:
width = 4
for stars in range(1, width+1):
print(' '*(width-stars) + '* '*stars)
for stars in range(width-1, 0, -1):
print(' '*(width-stars) + '* '*stars)

Please upvote, as i have given the exact answer as asked in
question. Still in case of any concerns in code, let me know in
comments. Thanks!
PLEASE DO THIS IN PYTHON!!!!!!!! 1.) For each lab program you develop, make sure to include...
IN C++ LANGUAGE PLEASE::: Design and implement a program (name it Favorites) to print out on separate lines the following: your name, your birthday, your hobbies, your favorite book, and your favorite movie.
PLEASE DO BOTH OF THESE IN PYTHON!!! AND MAKE SURE THAT I CAN COPY THE CODE. 1.) Exercise #1: Design and implement a program (name it PrintSum) that prompts the user for an integer values between 1 and 100. The program then uses a while loop to determine and print out the sum of all values between 1 and the entered value. The program rejects invalid input values with proper message such “Invalid Input. Try again.” Document your code and...
assignment 1 Make sure you are able to write a python program as described in the text. You will be working in repl.it Title your program temperature. Add a comment to say that this program converts Fahrenheit to Centigrade. Create variables: fahrenheit and centigrade values my name Have the program prompt the user (the instructor) for a value for the fahrenheit variable. Convert the value to centigrade, using this formula: (fahrenheit - 32) * ÷ 9 = centigrade Have the...
PLEASE DO THIS IN PYTHON!!! 1.) Exercise #1: Design and implement a program (name it Youth) that reads from the user an integer values repressing age (say, age). The program prints out the entered values followed by a message as follows: If age is less or equal to 21, the message is “Youth is a wonderful thing. Enjoy.”. Finally, the program always prints out the message “Age is a state of mind.” Format the outputs following the sample runs below....
C++ : Please include complete source code in answer This program will have names and addresses saved in a linked list. In addition, a birthday and anniversary date will be saved with each record. When the program is run, it will search for a birthday or an anniversary using the current date to compare with the saved date. It will then generate the appropriate card message. Because this will be an interactive system, your program should begin by displaying a...
PLEASE DO BOTH OF THESE IN PYTHON 1) Exercise #1: Design and implement class Rectangle to represent a rectangle object. The class defines the following attributes (variables) and methods: Two Class variables of type double named height and width to represent the height and width of the rectangle. Set their default values to 1.0 in the default constructor. A non-argument constructor method to create a default rectangle. Another constructor method to create a rectangle with user-specified height and width. Python...
(IN PYTHON) You are to develop a Python program that will read the file Grades-1.txt that you have been provided on Canvas. That file has a name and 3 grades on each line. You are to ask the user for the name of the file and how many grades there are per line. In this case, it is 3 but your program should work if the files was changed to have more or fewer grades per line. The name and...
PLEASE DO IN PYTHON Program 2: Design (pseudocode) and implement (source code) a program (name it FeetMeters) to display a conversion tables for feet and meter as show below. Document your code and properly. Feet Meter 1.0 0.305 2.0 0.610 3.0 0.915 . . . . . . 19.0 5.7.95 20.0 6.100 Meter Feet 1.0 3.279 2.0 6.558 3.0 9.837 . . . . . . 19.0 62.301 20.0 65.574 The program defines the following methods: Method feetToMeter() converts from...
PLEASE DO IN C# AND MAKE SURE I CAN COPY CODE IN VISUAL STUDIO Exercise #1: Design and implement class Rectangle to represent a rectangle object. The class defines the following attributes (variables) and methods: 1. Two Class variables of type double named height and width to represent the height and width of the rectangle. Set their default values to 1.0 in the default constructor. 2. A non-argument constructor method to create a default rectangle. 3. Another constructor method to...
Please write comments with the program. Python programming!! Part III - write student data In this part the program should create a .csv file and fill it with generated student information. The program should: Ask the user for a name for the .csv file (use your own name for the exercise) Create the .csv file with columns named - ID, first-name, GPA Based on the information received in part I, generate and fill students information in the CSV file Tell...