Skip to content

Commit 1ba9ad6

Browse files
committed
testimonial
1 parent 6e96bc3 commit 1ba9ad6

File tree

4 files changed

+13
-4
lines changed

4 files changed

+13
-4
lines changed

03_Day_Operators/day-3.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@
99
print('Division: ', 7 / 2)
1010
print('Division without the remainder: ', 7 // 2) # gives without the floating number or without the remaining
1111
print('Modulus: ', 3 % 2) # Gives the remainder
12-
print ('Division without the remainder: ',7 // 3)
12+
print ('Division without the remainder: ', 7 // 3)
1313
print('Exponential: ', 3 ** 2) # it means 3 * 3
1414

1515
# Floating numbers
1616
print('Floating Number,PI', 3.14)
1717
print('Floating Number, gravity', 9.81)
1818

1919
# Complex numbers
20-
print('Complex number: ', 1+1j)
21-
print('Multiplying complex number: ',(1+1j) * (1-1j))
20+
print('Complex number: ', 1 + 1j)
21+
print('Multiplying complex number: ',(1 + 1j) * (1-1j))
2222

2323
# Declaring the variable at the top first
2424

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

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

04_Day_Strings/04_strings.md

+2
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

+3
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 30DaysOfJavaScript. 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

+4
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 30DaysOfJavaScript. 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)