my_list = [1, 2, 3]
my_list.append([4, 5])
print(len(my_list))
my_list.append([4, 5])
print(len(my_list))
Anonymous Quiz
10%
# A) 3
28%
# B) 4
56%
# C) 5
6%
# D) 6
๐16โค5๐ฅ3
Looking for a fun way to improve your Python skills? Weโre posting two daily shorts with Python quizzes. Subscribe to join the fun!
A new Python quiz uploaded on YouTube channel! Test your skills and see if you can get the answer right. Check it out here: https://linktw.in/Gcafwi
โค9๐4๐ฅ3๐3
A new Python quiz uploaded on YouTube channel! Test your skills and see if you can get the answer right. Check it out here: https://linktw.in/BhwunM
๐2
x = [1, 2, 3, 4]
y = x
y.append(5) print(x)
y = x
y.append(5) print(x)
Anonymous Quiz
20%
A) [1, 2, 3, 4]
66%
B) [1, 2, 3, 4, 5]
9%
C) [5, 1, 2, 3, 4]
6%
D) None of the above
๐ค6๐2๐ฅฐ1
# Create a map using Python
import folium
from IPython.display import display
map_center = [38.9072, -77.0369] # Coordinates for Washington, D.C.
mymap = folium.Map(location=map_center, zoom_start=12)
folium.Marker(
[38.9072, -77.0369],
popup="Washington, D.C.",
icon=folium.Icon(color="blue", icon="info-sign")
).add_to(mymap)
display(mymap)
import folium
from IPython.display import display
map_center = [38.9072, -77.0369] # Coordinates for Washington, D.C.
mymap = folium.Map(location=map_center, zoom_start=12)
folium.Marker(
[38.9072, -77.0369],
popup="Washington, D.C.",
icon=folium.Icon(color="blue", icon="info-sign")
).add_to(mymap)
display(mymap)
๐7โค4
๐ Unlock Your Future in Tech! ๐
Excited to invite you to an upcoming webinar: Navigating the Future: How AI and Automation Unlock Careers in Full Stack Development (FSD), Business Analysis, and Data Science.
๐ Date: 28 Aug, 2024
โฐ Time: 5:00 PM โ 7:00 PM
Donโt miss out on this opportunity to learn, grow, and connect! ๐
๐ Reserve your seat in 2 easy steps:
1๏ธโฃ Register via link - https://forms.gle/h4vSnhhWko4vQZuj9
2๏ธโฃ Attend on the scheduled time - https://www.skillected.com/sessions/Navigating-the-Future-How-AI-and-Automation-Unlock-Careers-in-Full-Stack-Development-FSD-Business-Analysis-and-Data-Science-66cc9537bee1d00220e7b7de
Excited to invite you to an upcoming webinar: Navigating the Future: How AI and Automation Unlock Careers in Full Stack Development (FSD), Business Analysis, and Data Science.
๐ Date: 28 Aug, 2024
โฐ Time: 5:00 PM โ 7:00 PM
Donโt miss out on this opportunity to learn, grow, and connect! ๐
๐ Reserve your seat in 2 easy steps:
1๏ธโฃ Register via link - https://forms.gle/h4vSnhhWko4vQZuj9
2๏ธโฃ Attend on the scheduled time - https://www.skillected.com/sessions/Navigating-the-Future-How-AI-and-Automation-Unlock-Careers-in-Full-Stack-Development-FSD-Business-Analysis-and-Data-Science-66cc9537bee1d00220e7b7de
โค1