Skip to content

Commit 4bb3f66

Browse files
Update and rename 8.[BIA] Ex2.3 How to Change the Content or Type of a Variable to 8.[BIA] Ex2.3 How to Change the Content or Type of a Variable.py
1 parent c143a71 commit 4bb3f66

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed
Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,12 @@
99
1010
"""
1111
# Let's Code . . .
12+
# Let's Code . . .
1213
Isuzu_lunch_date = str(1920.5)
1314
print(Isuzu_lunch_date)
15+
print(type(Isuzu_lunch_date))
1416
Isuzu_lunch_date = float(Isuzu_lunch_date)
1517
print(Isuzu_lunch_date)
1618
print(type(Isuzu_lunch_date))
17-
print(Isuzu_lunch_date + 0020.20)
18-
print(Isuzu_lunch_date)
19+
print(Isuzu_lunch_date + 20.30 )
1920

0 commit comments

Comments
 (0)