-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPart 2 - Simple Loops.py
177 lines (136 loc) · 3.33 KB
/
Part 2 - Simple Loops.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
# Simple while loop example
while True:
number = int(input("Please type in a number, -1 to quit: "))
if number == -1:
break
print(number ** 2)
print("Thanks and bye!")
# Example 2
while True:
code = input("Please type in your PIN: ")
if code == "1234":
break
print("Incorrect...try again")
print("Correct PIN entered!")
# Example 3
while True:
print("hi")
response = input("Shall we continue?")
if response == "no":
break
print("okay then")
# Input Validation
from math import sqrt
while True:
number = int(input("Please type in a number: "))
if number == 0:
break
if number > 0:
print(sqrt(number))
else:
print("Invalid number")
print("Exiting...")
# Countdown
number = 5
print("Countdown!")
while True:
print(number)
number = number - 1
if number == 0:
break
print("Now!")
# Repeat Password
password = input("Password: ")
while True:
repeat = input("Repeat password: ")
if password == repeat:
break
else:
print("They do not match!")
print("User account created!")
# Loops with helper variable
attempts = 0
while True:
code = input("Please type in your PIN: ")
attempts += 1
if code == "1234":
success = True
break
if attempts == 3:
success = False
break
# this is printed if the code was incorrect AND there have been less than three attempts
print("Incorrect...try again")
if success:
print("Correct PIN entered!")
else:
print("Too many attempts...")
# PIN and number of attempts
attempt = 0
while True:
pin = input("Pin: ")
attempt += 1
if pin == "4321":
break
else:
print("Wrong")
if attempt == 1:
print("Correct! It only took you one single attempt!")
else:
print(f"Correct! It took you {attempt} attempts")
# The next leap year
year = int(input("Year: "))
next = year + 1
while True:
if next % 100 == 0:
if next % 400 == 0:
break
elif next % 4 == 0:
break
next += 1
print(f"The next leap year after {year} is {next}")
# Concatenating strings with the + operator
# Story Example
story = ""
previous = ""
while True:
word = input("Please type in a word: ")
if word == "end" or word == previous:
break
story += word + " "
previous = word
print(story)
# Sum, mean, number counter and positives and negatives counter
print("Please type in integer numbers. Type in 0 to finish.")
number = 0
count = 0
sums = 0
positives = 0
negatives = 0
while True:
number = int(input("Number: "))
if number != 0:
count += 1
sums += number
if number > 0:
positives += 1
if number <0:
negatives += 1
else:
break
print(f"Numbers typed in {count}")
print(f"The sum of the numbers is {sums}")
print(f"The mean of the numbers is {sums/count}")
print(f"Positive numbers {positives}")
print(f"Negative numbers {negatives}")
# Example - Hello Visual Studio Code
while True:
editor = input("Editor: ").lower()
if editor == "visual studio code":
print("an excellent choice!")
break
elif editor == "word" or editor == "notepad":
print("awful")
else:
print("not good")
# string.lower() method converts the string it is applied on to lowercase entirely