Skip to content

Commit

Permalink
testimonial
Browse files Browse the repository at this point in the history
  • Loading branch information
Asabeneh committed Nov 17, 2021
1 parent 6e96bc3 commit 1ba9ad6
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
8 changes: 4 additions & 4 deletions 03_Day_Operators/day-3.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@
print('Division: ', 7 / 2)
print('Division without the remainder: ', 7 // 2) # gives without the floating number or without the remaining
print('Modulus: ', 3 % 2) # Gives the remainder
print ('Division without the remainder: ',7 // 3)
print ('Division without the remainder: ', 7 // 3)
print('Exponential: ', 3 ** 2) # it means 3 * 3

# Floating numbers
print('Floating Number,PI', 3.14)
print('Floating Number, gravity', 9.81)

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

# Declaring the variable at the top first

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

print(3 > 2 and 4 > 3) # True - because both statements are true
print(3 > 2 and 4 < 3) # False - because the second statement is false
Expand Down
2 changes: 2 additions & 0 deletions 04_Day_Strings/04_strings.md
Original file line number Diff line number Diff line change
Expand Up @@ -600,3 +600,5 @@ The area of a circle with radius 10 is 314 meters square.
🎉 CONGRATULATIONS ! 🎉

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


3 changes: 3 additions & 0 deletions 11_Day_Functions/11_functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -373,6 +373,9 @@ print(do_something(square_number, 3)) # 27

🌕 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.

## Testimony
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/)

## 💻 Exercises: Day 11

### Exercises: Level 1
Expand Down
4 changes: 4 additions & 0 deletions 30_Day_Conclusions/30_conclusions.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,14 @@

# Day 30


## Conclusions

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).

## Testimony
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/)

GIVE FEEDBACK:
http://thirtydayofpython-api.herokuapp.com/feedback

Expand Down

0 comments on commit 1ba9ad6

Please sign in to comment.