Skip to content

Py DS_Engineer Lab Report #02

Amy Lin edited this page Jun 19, 2017 · 1 revision

Python Programming for Data Scientists & Engineers Lab #02

Lab #02-1 Asterisks shaped pattern for letter "A"



Create 2D array for patterns.

Output values of rows and columns accordingly by orders.

Asterisks will be shaping the pattern.


Lab #02-2 A string with full alphabets or not



Create a lowercase alphabets set and prompt user for either a sentence or word.

Convert user input to lowercase and take out non-alphabet symbols.

Check if all alphabets are in the user's input. If yes, congrats user!



If not, notify user and print out the list of missing alphabets.


Lab #02-3 Find numbers between 1500-2700 divided by 7 and are multiples of 5



Check numbers between 1500 to 2700 that are divisible by 7 and are multiples of 5.

Put the numbers that match the conditions to the list and output the results.