Skip to content

Commit b818d21

Browse files
authored
Merge branch 'Asabeneh:master' into master
2 parents 2dead81 + ff24ab2 commit b818d21

File tree

4 files changed

+13
-4
lines changed

4 files changed

+13
-4
lines changed

03_Day_Operators/day-3.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,16 @@
1111
print('Division: ', 7 / 2)
1212
print('Division without the remainder: ', 7 // 2) # gives without the floating number or without the remaining
1313
print('Modulus: ', 3 % 2) # Gives the remainder
14-
print ('Division without the remainder: ',7 // 3)
14+
print ('Division without the remainder: ', 7 // 3)
1515
print('Exponential: ', 3 ** 2) # it means 3 * 3
1616

1717
# Floating numbers
1818
print('Floating Number,PI', 3.14)
1919
print('Floating Number, gravity', 9.81)
2020

2121
# Complex numbers
22-
print('Complex number: ', 1+1j)
23-
print('Multiplying complex number: ',(1+1j) * (1-1j))
22+
print('Complex number: ', 1 + 1j)
23+
print('Multiplying complex number: ',(1 + 1j) * (1-1j))
2424

2525
# Declaring the variable at the top first
2626

@@ -111,7 +111,7 @@
111111
print('B in Asabeneh', 'B' in 'Asabeneh') # False -there is no uppercase B
112112
print('coding' in 'coding for all') # True - because coding for all has the word coding
113113
print('a in an:', 'a' in 'an') # True
114-
print('4 is 2 ** 2:', 4 is 2 **2) # True
114+
print('4 is 2 ** 2:', 4 is 2 ** 2) # True
115115

116116
print(3 > 2 and 4 > 3) # True - because both statements are true
117117
print(3 > 2 and 4 < 3) # False - because the second statement is false

04_Day_Strings/04_strings.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -600,3 +600,5 @@ The area of a circle with radius 10 is 314 meters square.
600600
🎉 CONGRATULATIONS ! 🎉
601601

602602
[<< Day 3](../03_Day_Operators/03_operators.md) | [Day 5 >>](../05_Day_Lists/05_lists.md)
603+
604+

11_Day_Functions/11_functions.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -373,6 +373,9 @@ print(do_something(square_number, 3)) # 27
373373

374374
🌕 You achieved quite a lot so far. Keep going! You have just completed day 11 challenges and you are 11 steps a head in to your way to greatness. Now do some exercises for your brain and muscles.
375375

376+
## Testimony
377+
Now it is time to express your thoughts about the Author and 30DaysOfPython. You can leave your testimonial on this [link](https://testimonify.herokuapp.com/)
378+
376379
## 💻 Exercises: Day 11
377380

378381
### Exercises: Level 1

30_Day_Conclusions/30_conclusions.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,14 @@
2424

2525
# Day 30
2626

27+
2728
## Conclusions
2829

2930
In the process of preparing this material I have learned quite a lot and you have inspired me to do more. Congratulations for making it to this level. If you have done all the exercise and the projects, now you are capable to go to a data analysis, data science, machine learning or web development paths. [Support the author for more educational materials](https://www.paypal.com/paypalme/asabeneh).
3031

32+
## Testimony
33+
Now it is time to express your thoughts about the Author and 30DaysOfPyhton. You can leave your testimonial on this [link](https://testimonify.herokuapp.com/)
34+
3135
GIVE FEEDBACK:
3236
http://thirtydayofpython-api.herokuapp.com/feedback
3337

0 commit comments

Comments
 (0)