Answer:
1) my_family.py
family = ('Dad', 'Mom', 'Agnes', 'David', 'Chris', 'Millie')
for name in range(len(family)):
print(family[name])
2) work_list.py
my_number = [2, 6, 3, 1, 8, 4]
# add items at the end of the list.
my_number.append(0)
my_number.append(5)
# sorts the list, default - ascending.
my_number.sort()
size = 0
while size < len(my_number):
print(my_number[size])
size += 1
Explanation:
The tuple and list data structures are ordered, using indexes to locate items in its container.
The family.py file uses the for-loop to iterate and print the family names in the tuple.
The work-list.py file contains a list of integers which is modified by adding items at the end of the list with the append method and a prints all the items using a while-loop.
Answer:
def cost(quantity, unit_price, taxable):
if taxable == "Yes":
total = (quantity * unit_price) + (quantity * unit_price * 0.07)
elif taxable == "No":
total = quantity * unit_price
return total
q = int(input("Enter the quantity: "))
p = float(input("Enter the unit price: "))
t = input("Is %7 tax applicable? (Yes/No): ")
print(str("$" + str(cost(q, p, t))))
Explanation:
- Create a function called cost that takes three parameters, quantity, unit price, and taxable
- If the tax is applicable, calculate the total with tax. Otherwise, do not add the tax.
- Return the total
- Ask the user for the inputs
- Call the function with given inputs and print the result
Answer choice: OD.code editor
Explanation:PLato
Answer:
The solution code is written in Python 3
- total = 0
- count = 0
- neg = 0
- pos = 0
-
- num = int(input("Enter an integer: "))
-
- while(num != 0):
- total += num
- count += 1
-
- if(num < 0):
- neg += 1
- else:
- pos += 1
-
- num = int(input("Enter an integer: "))
-
-
- print("The number of positives: " + str(pos))
- print("The number of negatives: " + str(neg))
- print("The total is " + str(total))
- print("The average is " + str(total/count))
Explanation:
Firstly, we create four variables, <em>total</em> , <em>count,</em> <em>neg</em> and <em>pos </em>(Line 1- 4). This is to prepare the variable to hold the value of summation of input integer (<em>total</em>), total number of input number (<em>count</em>), total negatives (<em>neg</em>) and total positives (<em>pos</em>).
Next, we prompt user for the first integer (Line 6).
Create a sentinel while loop and set the condition so long as the current input number, <em>num</em> is not equal to zero. the program will just keep adding the current <em>num</em> to total (Line 9) and increment the count by one (Line 10).
if <em>num</em> smaller than zero, increment the <em>neg</em> by one (Line 13) else increment the <em>pos </em>by one (Line 15). This is to track the total number of positives and negatives.
Finally, we can display all the required output (Line 20 - 23) using the Python built-in function <em>print()</em> when user enter 0 to terminate the while loop. The output shall be as follows:
The number of positives: 3
The number of negatives: 1
The total is 5
The average is 1.25
Answer:
not online stream i got it wrong
Explanation: