🚀 Full Stack Python || Pt-42: Mastering Packing and Unpacking in Python! 📚🌟🛠️ Notes Included!

preview_player
Показать описание
Python FSD Training | Logic Building | Projects | Frontend | Backend | Projects
-
Contact for Online Live Training:
~~~~~

Enroll Now: Join Live Full Stack Training
~~~~~~~~~~~~~~~~~~~~~~~~~~~

DSA with Python:
~~~~~~~~~~~~~~~

Basic & Adv Python - Python Module
-----------------------------------------

Bootstrap 5 - UI Module
---------------------------------------

JavaScript - UI Module
---------------------------------------

React JS - UI Module
---------------------------------------

Django - Backend Module
------------------------------------------

Basic & Adv Python 📝Notes:

Basic & Adv Python 📝Handwritten notes:
--------------------------------

React JS 📝Notes:
------------------------------------

Django 📝Notes:
-----------------------------

UI Module Notes:
-------------------------------

#htmlAndCssProjectsForPractice
#bestProjectToLearnHtmlCssAndJavascript
#javaFullStackInterviewQuestionsAndAnswers
#htmlTutorialForAdvanced
#howToWriteAJavaScriptProgramInHtml
#pythonFullStackDeveloperInterview
#whatIsFullStackWebDevelopment
#howToBecomeJavaFullStackDeveloper
#projectsToLearnJavaScript
#htmlCssJavascriptProjectAdvanced
#masterHtmlCssJavascript
#fullStackWebDevelopmentFullCourseInHindi
Рекомендации по теме
Комментарии
Автор

👋 Everyone, kindly "practice the code" & { drop } your code here in the [ comment section ] of this video! 🚀👩‍💻👨‍💻 Let's collaborate and learn together. Happy coding! 🌟

practice = 0
confident = False

while not confident:
practice += 1
if confident==True:
break

print("Congratulations! 🎉 You have practiced", practice, "times and gained confidence in coding. Keep it up! 👏")

navaidmails
Автор

Nice
You explain each and every thing

Anam-oe
Автор

list1 = list(map(int, input().split()))
list1.sort()
fmax = max(list1)

counting = list1.count(fmax)
print( list1[-(counting + 1)])

aperxmim
Автор

#input in single line

s = input("Enter 2 numbers: ")
x, y = s.split()
print(f'Sum of {x} and {y} is {int(x) + int(y)}')

aperxmim
Автор

test_tup = (3, 7, 1, 18, 9)
k=2
test_tup = sorted(test_tup)
out_tup = tuple(test_tup[:2]) + tuple(test_tup[-k:])
print(out_tup)

aperxmim
Автор

list1 = [9, 5, 6]
list2 = [(num, num**3) for num in list1]
print(list1)
print(list2)

aperxmim
Автор

list1 = [10, 20, 30, 40, 50, 60, 70]
a, b, c, *d = list1

aperxmim
Автор

list1 = ['10', '20', '30', '40', '50']
x, y, *z = map(int, list1)
print(x)
print(y)
print(z)

aperxmim
Автор

l1 = list(map(int, input("Enter the list elements:\n").split()))
print(l1)
l2=[(num, num**3) for num in l1]
print(l2) output: Enter the list elements:
10 20 30
[10, 20, 30]
[(10, 1000), (20, 8000), (30, 27000)]

shivavilasagaram
Автор

l1=[]
n=int(input("enter no.of scores:"))
for i in range(n):
value=int(input("enter score:"))
l1.append(value)
print(l1)
l1.sort(reverse=True)
print("scores are highest to lowest", l1)
fmax=l1[0]
print("highest score:", fmax)
fmax1=l1[1]
print("runner_up is:", fmax1)

shivavilasagaram
Автор

s2 =
list3 = s2.split("--")
list3

aperxmim
join shbcf.ru