Part-16: Python FSD Training Live | Enroll Now

  Рет қаралды 230

Mohd Navaid

Mohd Navaid

Күн бұрын

Python FSD Training | Logic Building | Projects | Frontend | Backend | Projects
-
Contact for Online Live Training:
~~~~~
navaidmails@gmail.com
Enroll Now: Join Live Full Stack Training
~~~~~~~~~~~~~~~~~~~~~~~~~~~
forms.gle/8Eqs...
Demo Video: • Class1: Python Full St...
DSA with Python:
~~~~~~~~~~~~~~~
• DSA with Python
Basic & Adv Python - Python Module
-----------------------------------------
Playlist: • Full Stack Python || W...
Bootstrap 5 - UI Module
---------------------------------------
• Bootstrap 5 - UI Module
JavaScript - UI Module
---------------------------------------
• JavaScript - UI Module
React JS - UI Module
---------------------------------------
• React JS - UI Module
Django - Backend Module
------------------------------------------
Basic & Adv Python 📝Notes:
---------------------------------------------------drive.google.c...
Basic & Adv Python 📝Handwritten notes:
--------------------------------
drive.google.c...
React JS 📝Notes:
------------------------------------
docs.google.co...
Django 📝Notes:
-----------------------------
docs.google.co...
UI Module Notes:
-------------------------------
docs.google.co...
#htmlAndCssProjectsForPractice
#bestProjectToLearnHtmlCssAndJavascript
#javaFullStackInterviewQuestionsAndAnswers
#htmlTutorialForAdvanced
#howToWriteAJavaScriptProgramInHtml
#pythonFullStackDeveloperInterview
#whatIsFullStackWebDevelopment
#howToBecomeJavaFullStackDeveloper
#projectsToLearnJavaScript
#htmlCssJavascriptProjectAdvanced
#masterHtmlCssJavascript
#fullstackwebdevelopmentfullcourseinhindi
#PythonFunctions #DefineFunction #PythonCode #PythonProgramming #PythonBasics #PythonScripting #FunctionDefinition #FunctionCall #ReturnStatement #LambdaFunctions #DefaultArguments #KeywordArguments #PositionalArguments #PythonTips #LearnPython #PythonDev #PythonScripts #PythonCoding #PythonLife #PythonDeveloper #PythonLearning #Python101 #CodingInPython #FunctionsInPython #PythonTutorial #PythonForBeginners #AdvancedPython #PythonTricks #PythonExamples #CodingFunctions #FunctionLogic #PythonSkills #PythonSyntax #PythonMadeEasy #CodeWithPython #PythonEducation #PythonWorld #LearnToCode #PythonSnippets #PythonLovers #WriteFunctions #PythonSolutions #CodeSmart #PythonEnthusiast #PythonProjects #PythonHacks #MasterPython #PythonBestPractices #PythonDesign #PythonIdeas #DebuggingFunctions #PythonConcepts #PythonEnthusiasts #PythonJourney #CustomFunctions #PythonCore #PythonLibraries #PythonProgrammingLanguage #DynamicFunctions #RecursiveFunctions #PythonFrameworks #PythonModules #PythonApplications #PythonTech #PythonFullStack #PythonFun #PythonExamplesForBeginners #FunctionScope #PythonEfficiency #CodeClean #PythonLearningPath #PythonExperts #PythonEnthusiastCommunity #PythonExecution #PythonEfficiencyTips #PythonSkillsImprovement #PythonForDataScience #PythonDjango #PythonAutomation #CodeFunctions #ReusableCode #PythonBeginnerGuide #PythonGuru #PythonTipsAndTricks #PythonForYou #PythonCodingJourney #PythonLogic #FunctionParameters #PythonPractice #PythonPrograms #PythonCommunity #PythonUsers #PythonCodeExamples #PythonMastery #PythonProjectsForBeginners #PythonDebugging #CodeSimplified

Пікірлер: 17
@syedajuveriya01
@syedajuveriya01 15 күн бұрын
#Write a function to calculate area of triangle #initialising base and height with 0.0 values Base = 0.0 #global variable Height = 0.0 #global variable #creating a read() function to read base and height def readBase(): global Base Base = float(input(" Enter the Base of the triangle:")) #8 def readHeight(): global Height Height = float(input(" Enter the Height of the triangle:")) #8 #creating a findArea() function to calculate area of triangle def findArea(): area = Base * Height * 0.5 #local variable #8*8*0.5 print(f'The area of triangle is :{area}') #calling function print('*'*50) readBase() readHeight() findArea() print('*'*50) Output ************************************************** Enter the Base of the triangle:8 Enter the Height of the triangle:8 The area of triangle is :32.0 **************************************************
@navaidmails
@navaidmails 15 күн бұрын
Excellent work.
@MamathaPerni
@MamathaPerni 15 күн бұрын
height=0.0 base=0.0 def read(): global height,base height=int(input("Enter the height of the Triangle:")) base=int(input("Enter the base of the Triangle:")) def findAread(): area=height*base*0.5 print(f"The area of the triangle is:{area}") read() findAread() #Enter the height of the Triangle:4 #Enter the base of the Triangle:6 The area of the triangle is:12.0
@navaidmails
@navaidmails 15 күн бұрын
Good work.. Mamatha
@ArsalaKhan-nk8nq
@ArsalaKhan-nk8nq 15 күн бұрын
#Write a function to calculate area of triangle base =0.0 height=0.0 #Create a read function to read base and height. def read(): global base, height base = float(input("Enter base: ")) height = float(input("Enter height: ")) #Create a findAread function to calculate area of triangle. def findarea(): area = base*height*0.5 print(f"the area of triangle is {area}") #function calling read() findarea() #OUTPUT Enter base: 3 Enter height: 4 the area of triangle is 6.0
@navaidmails
@navaidmails 15 күн бұрын
Good work
@CodeCrafted-j4l
@CodeCrafted-j4l 15 күн бұрын
#function to calculate area of triangle base =0.0 height=0.0 # read function to read base and height. def read(): global base, height base = float(input("Enter base: ")) height = float(input("Enter height: ")) #Create a findAread function to calculate area of triangle. def findarea(): area = base*height*0.5 print(f"the area of triangle is {area}") #function calling read() findarea() #OUTPUT Enter base: 8.0 Enter height: 10.0 the area of triangle is 40.0
@navaidmails
@navaidmails 15 күн бұрын
Very nice
@Mostcallmesai
@Mostcallmesai 15 күн бұрын
#Write a function to calculate area of triangle base=0.0 height=0.0 def base(): global base base=float(input("base : ")) def height(): global height height=float(input("height : ")) def findArea(): Area=0.5*base*height print(f'Area of Rectangle is : {Area}') base() height() findArea() #Output base : 10.0 height : 15.0 Area of Rectangle is : 75.0
@navaidmails
@navaidmails 15 күн бұрын
Nice work.
@sabinalefebvre6567
@sabinalefebvre6567 15 күн бұрын
# Base and height should be global l and initialise them with 0.0 base = 0.0 height = 0.0 # Function to read the base and height def read(): global base, height base = float(input("Enter triangle base: ")) height = float(input("Enter triangle height: ")) # Function to calculate the area of the triangle def findArea(): # function create a local variable which is called:-> area= height * base * 0.5 area = base * height * 0.5 print(f"The area of the triangle is: {area}") # Main program execution read() area = findArea() OUTPUT Enter triangle base: 10 Enter triangle height: 20 The area of the triangle is: 100.0
@navaidmails
@navaidmails 15 күн бұрын
Very Good Sabina.
@sabinalefebvre6567
@sabinalefebvre6567 14 күн бұрын
@@navaidmails Thank for your your explaination and your kwonlege 🥰🥰🥰
@Latha_koganti
@Latha_koganti 15 күн бұрын
Sir, Can we access the recording after completing the live class if we join in paid course
@navaidmails
@navaidmails 15 күн бұрын
Yes, life time access is there.
@sneakypirate876
@sneakypirate876 13 күн бұрын
Sir i have enrolled and paid the amount for course via Google form i have no access and details how should i contact
@navaidmails
@navaidmails 13 күн бұрын
navaidmails@gmail.com Kindly send your details on this mail. I'll revert back to you. Thank you!
Part-17: Python FSD Training Live | Enroll Now
1:13:10
Mohd Navaid
Рет қаралды 85
I Built a Web Scraper Using Python....
10:07
Cyb3rMaddy
Рет қаралды 7 М.
小丑女COCO的审判。#天使 #小丑 #超人不会飞
00:53
超人不会飞
Рет қаралды 16 МЛН
小丑教训坏蛋 #小丑 #天使 #shorts
00:49
好人小丑
Рет қаралды 54 МЛН
Modern Python logging
21:32
mCoding
Рет қаралды 219 М.
Part-19: Python FSD Training Live | Enroll Now
1:04:37
Mohd Navaid
Рет қаралды 97
TOP 10 Errors defining names in code: variables, functions, classes, commands…
9:58
CodelyTV - Redescubre la programación
Рет қаралды 9 М.
Part-24: Python FSD Training Live | Enroll Now
57:28
Mohd Navaid
Рет қаралды 24
one year of studying (it was a mistake)
12:51
Jeffrey Codes
Рет қаралды 336 М.
How I Would Learn Python FAST (if I could start over)
12:19
Generative AI in a Nutshell - how to survive and thrive in the age of AI
17:57
5 Useful F-String Tricks In Python
10:02
Indently
Рет қаралды 346 М.
小丑女COCO的审判。#天使 #小丑 #超人不会飞
00:53
超人不会飞
Рет қаралды 16 МЛН