[SOLVED] 程序代写代做代考 Programming Exercise 3-1

30 $

File Name: 程序代写代做代考_Programming_Exercise_3-1.zip
File Size: 461.58 KB

SKU: 5391640109 Category: Tags: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,

Or Upload Your Assignment Here:


Programming Exercise 3-1

Programming Exercise 7-6
def main():

# Declare local variables

number = 5

number_list = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]

# Display the number.

print(‘Number:’, number)

# Display the list of numbers.

print(‘List of numbers:
’, number_list, sep=”)

# Display the list of numbers that are larger

# than the number.

print(‘List of numbers that are larger than ‘,

number, ‘:’, sep=”)

# Call the display_larger_than_n_list function,

# passing a number and number list as arguments.

display_larger_than_n_list(number, number_list)

# The display_larger_than_n_list function accepts two arguments:

# a list, and a number. The function displays all of the numbers

# in the list that are greater than the number.

def display_larger_than_n_list(n, n_list):

# Declare an empty list.

larger_than_n_list = []

# Loop through the values in the list.

for value in n_list:

# Determine if a value is greater than n.

if value > n:

# If so, append the value to the list.

larger_than_n_list.append(value)

# Display the list.

print(larger_than_n_list)

# Call the main function.

main()

Reviews

There are no reviews yet.

Only logged in customers who have purchased this product may leave a review.

Shopping Cart
[SOLVED] 程序代写代做代考 Programming Exercise 3-1
30 $