update folium version

This commit is contained in:
BuffTechTalk
2024-09-30 21:39:36 -05:00
parent 1c99b2a7c1
commit 51641cffd8
3 changed files with 12 additions and 2 deletions

Binary file not shown.

Binary file not shown.

View File

@@ -1,2 +1,12 @@
# Example 1: put following code in the editor and click APPLY to run
# Example 3: Demonstrating basic arithmetic operations
a = 10 # Assigns integer 10 to variable 'a'
b = 3 # Assigns integer 3 to variable 'b'
c = 2.5 # Assigns floating-point number 2.5 to variable 'c'
print('Addition: ', a + b) # Prints the sum of 'a' and 'b'