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
π15β€3