Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Asabeneh committed Aug 17, 2020
1 parent 2c8b7d4 commit f890229
Show file tree
Hide file tree
Showing 5 changed files with 142 additions and 77 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ print('num_int', int(num_str)) # 10
print('num_float', float(num_str)) # 10.6

# str to list
first = 'Asabeneh'
first_name = 'Asabeneh'
print(first_name)
print(first_name) # 'Asabeneh'
first_name_to_list = list(first_name)
Expand Down
4 changes: 2 additions & 2 deletions 03_Day_Operators/03_operators.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ num_two = 4
total = num_one + num_two
diff = num_two - num_one
product = num_one * num_two
div = num_two / num_two
div = num_two / num_one
remainder = num_two % num_one

# Printing values with label
Expand All @@ -164,7 +164,7 @@ print('Area of a circle:', area_of_circle)
length = 10
width = 20
area_of_rectangle = length * width
print('Area of rectangle:', area_of_width)
print('Area of rectangle:', area_of_rectangle)

# Calculating a weight of an object
mass = 75
Expand Down
Loading

0 comments on commit f890229

Please sign in to comment.