-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathday_5_exercise_solution.py
168 lines (111 loc) · 3.9 KB
/
day_5_exercise_solution.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
# -*- coding: utf-8 -*-
"""
Created on Wed Jul 4 09:39:55 2018
@author: Florian Ulrich Jehn
"""
import datetime
import time
import dateutil
import random
import os
# Exercise 1
def count_char(char, word):
"""Counts the characters in word"""
return word.count(char)
# If you want to do it manually try a for loop
print(count_char("a", "banana"))
# Exercise 2
def is_anagram(w1, w2):
"""
Determines if w1 and w2 are anagrams
"""
return (sorted(w1.upper()) == sorted(w2.upper()))
print(is_anagram("beer", "bree"))
print(is_anagram("beer", "banana"))
print(is_anagram("beer", "five"))
# Exercise 3
def transform(string):
"""
Capitalizes string, deletes all whitespaces and counts the len of the
product.
"""
string = string.upper()
string = string.replace(" ", "")
length = len(string)
return (string, length)
print(transform("This is a sentence!"))
# Exercise 4
def print_n_pause():
"""Prints hello for 10 seconds and makes pauses in between"""
start = datetime.datetime.now()
while (datetime.datetime.now() - start).seconds < 10:
print("Hello")
time.sleep(0.7)
print_n_pause()
# Exercise 5
import datetime
def bday_timer(bday):
"""Tells how old you are and how long it is till your next birthday."""
# Calculate the age
today = datetime.datetime.today()
age = dateutil.relativedelta.relativedelta(today, bday)
age = age.years
print("Your age is {} years".format(age))
# Calculate the time till the next birthday
# Normalize the birthday to get a timedelta
bday_changed_year = datetime.datetime(today.year, bday.month, bday.day)
# Calculate the difference to the birthday
till_bday = today - bday_changed_year
# Check if the the bday already was this year
if till_bday.days < 0:
print("Only {} days until your birthday".format(- till_bday.days))
else:
bday_changed_year = datetime.datetime(bday_changed_year.year + 1,
bday_changed_year.month,
bday_changed_year.day)
till_bday = bday_changed_year - today
print("Only {} days until your next birthday".format(till_bday.days))
bday = datetime.datetime(1989, 12, 23)
bday_timer(bday)
# Exercise 6
def double_day(bday1, bday2):
"""Calculates the day when one person is twice as old as the other one"""
if bday1 > bday2:
delta = bday1 - bday2
double_day = bday1 + delta
else:
delta = bday2 - bday1
double_day = bday2 + delta
return double_day
bday1 = datetime.date(1990, 1, 9)
bday2 = datetime.date(1989, 12, 23)
double_day = double_day(bday1, bday2)
print("The double day of {} and {} is {}".format(bday1, bday2, double_day))
# Exercise 7
def create_files():
"""Creates the specified files"""
for i in range(10):
num = random.random()
# Pause to allow the timestamp to change.
time.sleep(0.01)
now = time.time()
# Use 'with' to make reading and writing easier.
with open(str(now) + ".txt", "w", encoding='utf-8') as outfile:
outfile.write(str(num))
create_files()
# Exercise 8
def rewrite_files():
for file in os.listdir():
# Only consider txts
if file[-3:] == "txt":
with open(file, "r") as infile:
# Determine the new value
num = float(infile.readline())
out_num = 1 if num > 0.5 else 0
# Get the date
timestamp = file[:-4]
date = datetime.datetime.fromtimestamp(float(timestamp))
# Write the files
with open(str(num) + ".txt", "w", encoding='utf-8') as outfile:
outfile.write(str(date) + "\n\n\n" + str(out_num))
rewrite_files()