Browse Source

day-05

master
Ken Schaefer 9 months ago
parent
commit
c3cc286204
  1. 23
      day-05/average_height.py
  2. 10
      day-05/fizz_buzz.py
  3. 8
      day-05/high_score.py
  4. 43
      day-05/pwd_generator.py
  5. 4
      day-05/simple-for.py
  6. 9
      day-05/using_range.py

23
day-05/average_height.py

@ -0,0 +1,23 @@
# expected results
# total height = 475
# number of students = 3
# average height = 158
student_heights = ["151", "145", "179"]
for n in range(0, len(student_heights)):
student_heights[n] = int(student_heights[n])
#####
total_height = 0
for h in student_heights:
total_height += h
print(f"total height = {total_height}")
number_of_students = 0
for s in student_heights:
number_of_students += 1
print(f"number of students = {number_of_students}")
average_height = total_height / number_of_students
print (f"average height = {average_height}")

10
day-05/fizz_buzz.py

@ -0,0 +1,10 @@
target = 100
for n in range(1, target + 1):
if((n % 3 == 0) and (n % 5 ==0)):
print("FizzBuzz")
elif(n % 3 == 0):
print("Fizz")
elif(n % 5 == 0):
print("Buzz")
else:
print(n)

8
day-05/high_score.py

@ -0,0 +1,8 @@
student_scores = [78, 65, 89, 86, 55, 91, 64, 89]
high_score = 0
for s in student_scores:
if s > high_score:
high_score = s
print(f"the highest score is {high_score}")

43
day-05/pwd_generator.py

@ -0,0 +1,43 @@
#Password Generator Project
import random
letters = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z']
numbers = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9']
symbols = ['!', '#', '$', '%', '&', '(', ')', '*', '+']
4
print("Welcome to the PyPassword Generator!")
nr_letters= int(input("How many letters would you like in your password?\n"))
nr_symbols = int(input(f"How many symbols would you like?\n"))
nr_numbers = int(input(f"How many numbers would you like?\n"))
#Eazy Level - Order not randomised:
#e.g. 4 letter, 2 symbol, 2 number = JduE&!91
password = ''
for l in range(1, nr_letters + 1):
password += random.choice(letters)
for s in range(1, nr_symbols + 1):
password += random.choice(symbols)
for n in range(1, nr_numbers + 1):
password += random.choice(numbers)
print(password)
#Hard Level - Order of characters randomised:
#e.g. 4 letter, 2 symbol, 2 number = g^2jk8&P
password_list = []
for l in range(1, nr_letters + 1):
password_list.append(random.choice(letters))
for s in range(1, nr_symbols + 1):
password_list.append(random.choice(symbols))
for n in range(1, nr_numbers + 1):
password_list.append(random.choice(numbers))
random.shuffle(password_list)
pwd = ""
for c in password_list:
pwd += c
print(pwd)

4
day-05/simple-for.py

@ -0,0 +1,4 @@
fruits = ["Apple", "Peach", "Pear"]
for fruit in fruits:
print(fruit)

9
day-05/using_range.py

@ -0,0 +1,9 @@
total = 0
for number in range(1, 101):
total += number
print(total)
evens = 0
for num in range(2, 101, 2):
evens += num
print(evens)
Loading…
Cancel
Save