Exercise 1 - Solution And Your Answers | Python Tutorials For Absolute Beginners In Hindi #14

  Рет қаралды 394,674

CodeWithHarry

CodeWithHarry

Күн бұрын

Пікірлер: 864
@mandardeshpande2740
@mandardeshpande2740 4 жыл бұрын
Harry bhai, mai ye series kafi late dekh raha hu, lekin maza aa raha hai sikhne me. Aap ne is video me inaam ki baat ki lekin aap jo ye sab free me knowledge de rahe ho mai to bolta hu yehi inaam hai!! thank you so much bhai!!
@ritikkumar6483
@ritikkumar6483 4 жыл бұрын
dict = {"ingnore":"disregard intentionally","composition":"a creative work","intention":"resolution or determination"} print("enter the word") data1= input() print(data1, "means",dict[data1])
@malujadhao749
@malujadhao749 4 жыл бұрын
d2 = {"set":"a group of words","mutable":"that can change ","mortal":"which can die","immutable":"which cannot change"} var1 = str(input()) if var1 in d2: print(d2[var1]) else: print("don't write wrong word")
@ashishkumarbehera2543
@ashishkumarbehera2543 2 жыл бұрын
tyg
@SarthakSakhala
@SarthakSakhala Жыл бұрын
dict1={} keys=input('enter your name=') values=input('enter your age=') dict1[keys]=values print(dict1)
@arnabmitra861
@arnabmitra861 2 жыл бұрын
dict = {"immutable" :"unchanging over time or unable to be changed" , "conscious":"aware of and responding to one's surroundings" , "virtue":"behaviour showing high moral standards." , "flabbergasted":"greatly surprised or astonished."} word = input("Enter the Word : ") if word in dict: print(dict[word]) else: print("Not stored in dict") """Harry Bhai thanks for the classes really helpful, concepts are very clear...I have enrolled in paid courses but they are not even close to you , the way you teach is awesome, detailed and easy. Thanks bro """
@maazansari1812
@maazansari1812 4 жыл бұрын
word =input() d1 ={"kite" :"patang" ,"red" :"lal" ,"black" : "kala" ,"man":"aadmi"} print(d1[word])
@robosapien1413
@robosapien1413 3 жыл бұрын
optimum programme
@mistryankit4434
@mistryankit4434 3 жыл бұрын
dic = {"assist":" to give help or support to (a person, cause, etc);", "belief":"a principle, proposition, idea, etc, accepted as true", "combat":"a fight, conflict, or struggle", "differ":"to be unlike, dissimilar, or distinct in nature or qualities", "ethnic":" (Anthropology & Ethnology) relating to or characteristic of a human group having racial, " "religious, linguistic, and certain other traits in common"} print("Enter a word which you want to know with meaning: ") inp = input() print("Meaning of this word is: ", dic[inp])
@sumitsagarrr
@sumitsagarrr 3 жыл бұрын
d1 = {"run": "bhagna", "walk": "chalna", "sleep": "sona", "sit": "baithna", "study": "padhna", "swimming": "tairna", "hindi synonyms of water": ("paani", "jal")} print("write the word here to find the hindi meaning") n = input() print("your hindi meaning is") print(d1[n])
@FlashCardsK-t8p
@FlashCardsK-t8p 3 жыл бұрын
thanks a lot
@thesiddhantsankhla
@thesiddhantsankhla 2 жыл бұрын
Wah bete moj krdi
@devanshtanwar4075
@devanshtanwar4075 2 жыл бұрын
dic1={"mutable":"can changed","immutable":"cannot be changed","tentative":"uncertain or not definite" ,"abandoned":"left completely and no longer used or wanted","troop":"a large group of people or animals"} print("search word in the dictionary") wfd= (input()) print(dic1[wfd]) wfd= (input()) print(dic1[wfd]) wfd= (input()) print(dic1[wfd]) wfd= (input()) print(dic1[wfd]) #search only these words- mutable, immutable , tentative, abandoned & troop.
@TarunKumar-zc2bf
@TarunKumar-zc2bf Жыл бұрын
# create a dictionary and take input from the user and return the meaning of the word from the dictionary dic={"easy":"simple", "hard":"difficult", "okay":"yes", "tarun":"aadi", "sneha":"sakshi"} print(dic) n=input("Enter the word you want to search from the dictionary: ") print(dic[n])
@kanhataak1269
@kanhataak1269 5 жыл бұрын
user=input('enter a world find a mean : ') dict={'argue':'लोगों का तर्क है', 'prove':'सिद्ध करना', 'tattle':'गपशप', 'believe me':'मुझ पर विश्वास करो'} print(dict[user])
@vanshika-w
@vanshika-w Жыл бұрын
d1 = {"Absence":"Unavailabilty of Something","Amount":"A collection of something","Chip":"A small and thin piece of large item" ,"Hostile":"An unfriendly person"} start = input("Enter any key: ") print(d1[start])
@mayanksankhala9788
@mayanksankhala9788 2 жыл бұрын
dict = { "knife": "It is a sharp blade used to cut things ", "notebook": "It is a collection of pages", "bucket": "It is an item used to store water or some liquid", "box": "It is a container used to store things" } word = str(input("Enter the word of which you want meaning:")) print("Here is meaning of word: " + word + " -> " + dict[word])
@abhinavkatiyan8923
@abhinavkatiyan8923 2 жыл бұрын
x=input("What do you want to find 1.List/Sets/Str ") Y=x.lower() d1={"sets":"put, lay, or stand (something) in a specified place or position", "list":"a series of names, figures, items, etc. that are written, printed or said one after another", "str":'Python has a built-in string class named "str" with many handy features (there is an older module named "string" which you should not use)'} print(d1[Y])
@nishatrizwan2233
@nishatrizwan2233 Жыл бұрын
print("enter your age=",end=" ") age=int(input()) if age>=18: print("true") elif age==30: print("""elder") else: print("below") # create a list and check the input is availbale in the list or not.have # we have to take a inout from keyboard
@ananthsb3955
@ananthsb3955 4 жыл бұрын
dic = {"grab":"get it or have it or catch it", "exhaustive":"limited or over the limit or can't be taken anymore", "computer":"A machiene one day gonna replace human to machiene or helps in doing repeated works quickly", "python":"chota phataka bada dhamaka or the simpliest and widely used computer language"} opr = input("""Enter any word to know its meaning: grab exhaustive computer python """) print(dic[opr])
@MystikPrae
@MystikPrae 2 жыл бұрын
dict = {"abandon":"leave","console":"comfort","recover":"to get back","rehabilitation":"a place for recovery","Pratik":"memory"} print("Enter a word from above sentence as your wish and " "get you meaning") word = input() print("The meaning of that word is " + dict[word]+ " Thank you") # code by Pratik Pokhrel and lots of love from Nepal,harry
@riyalanjewar5120
@riyalanjewar5120 4 жыл бұрын
Did it differently using get(). I hope this is also one of the solution dict = {"Pour" : "flow rapidly in a steady stream.", "charm" : "attracting", "luck" : "success or failure apparently brought by chance rather than through one\'s own actions", } inpword = input("search word : ") print(dict.get(inpword))
@tanishqchoudharyy
@tanishqchoudharyy 3 жыл бұрын
look at mine , i too used get() but mine is a bit simpler.
@mehndidesighnes7989
@mehndidesighnes7989 3 жыл бұрын
.
@sahilakhan6314
@sahilakhan6314 2 жыл бұрын
dict={"genetics":"study about gene and heredity", "phenotype":" morphology ", " gene":"unit of heredity", "exhausted":" tired ", " magnificent":"elegant or splendid in appearance "} print(" enter your required word to know its meaning ") inpword=input() print(" meaning of required word is", dict[inpword])
@saurabhsuman1763
@saurabhsuman1763 3 жыл бұрын
Sorry for late sir. Because I am trying to learn Python from your video(reference) since Wednesday. I am trying to learn everything. You are great. My code for dictionary is below mentioned. dt = {"Mutable": "Changeable", "Immutable": "Unchangeable", "parentheses": "Round Bracket", "Append": "Add something in end"} CWH = input("Enter your word:") print(dt[CWH])
@ghaziahshoeb
@ghaziahshoeb 3 жыл бұрын
have u completed it already???
@dpmgaming9318
@dpmgaming9318 Жыл бұрын
var1 = 18 print("whats your age") var2 = int(input()) if var2100: print("plzz enter a valid age") elif var1>var2: print("sorry you cant drive, you are under age") elif var1==var2: print("you are exact of 18, sorry we cant decide") else : print("oh you are above 18, it means you can drive") i did this is this correct i mean i am 4 years late xD but still
@NabinChaudhary-f2g
@NabinChaudhary-f2g Жыл бұрын
#Dictionary is nothing but key value pairs d1={} #d1-dictionary #print(type(d1)) d2={"Breakfast":"Egg, Bread & Tea","Food":"Dal,Bhat,Tarkari", "Lunch":"Mo:MO,Chowmein","Dinner":"Roti,Dal,Tarkari"} print("1.Breakfast") print("2.Food") print("3.Lunch") print("4.Dinner") print("What do you want to have:") inp=input() print(d2[inp]) #Thanks Harry Bhai
@kiranlondhe7163
@kiranlondhe7163 2 жыл бұрын
a={"sensible":"able to make good judgements", "literate":"able to read and write", "affection":" a feeling of loving", "imperative":"very important or urgent", "lazy":"not wanting to work"} print("Search the word") b=input() print("The Meaning is, ", a[b] )
@saket_saurav
@saket_saurav 2 жыл бұрын
Harry sir, thanks for this wonderful series. Here's my attempt: dict={"Apple":"Fruit","Potato":"Vegetable","Mutton":"Meat","Milk":"Veg","Pizza":"Junk"} #print(dict) print("Enter your doubt.") inp=str(input()) #print(dict[inp])) print(inp,"is a", dict[inp])
@SPbhaiya07
@SPbhaiya07 3 жыл бұрын
8:00 Nhi bhai video boring nhi hai balki khuch concepts hi clear ho rhe hai *Thanks*
@rkpillai7268
@rkpillai7268 4 жыл бұрын
d1={"parallel":"having the same distance continuously between them","lone":"having no companions","longitude": "the angular distance of a place east or west","smooth":"having an even and regular surface"} print("search the word") print(d1[input()])
@karanmishra9935
@karanmishra9935 Жыл бұрын
mydict = {"atrocity":"an act of shocking cruelty", "fanatical":"marked by excessive enthusiasm for a cause or idea", "pensive":"deeply or seriously thoughtful", "respite":"a pause from doing something", "discordant":"not in agreement or harmony"} a = input("enter your word: ") print(f"{a} meaning {mydict[a]}")
@NarutoUzumaki-jh1be
@NarutoUzumaki-jh1be 3 жыл бұрын
D ={"Encyclopedia":"A book or set of books that give information about many subject", "Democracy":"A system in which the goverment of a country is elected by the people", "Expedite":"make something happen more quickly", "Arrogant":"Thinking that you are better and more important than other people"} print("search word you want:") print(D.keys()) word=input() print(D[word])
@greedfll4916
@greedfll4916 2 жыл бұрын
a=18 b=int(input("enter your age")) if b>a: if b
@syedahaniafatima285
@syedahaniafatima285 2 жыл бұрын
dic={ "drop something off":"to leave someone or something at the distination to which one has transported it", "acquaintance":"someone yon know but who is not a close friend" , "catch you one the way in":"catch is to reach or be in a place in time to see someone or something", "weakness":"feature or aspects of a thing or person"} print("enter the word") print(dic.get(input()))
@sidhantsharma3457
@sidhantsharma3457 2 жыл бұрын
us = input("Search the word: ") dict = { "bar": "a long rigid piece of wood, metal, or similar material, typically used as an obstruction, fastening, or weapon.", "ethnocentric": "evaluating other cultures according to preconceptions originating in the standards and customs of one's own culture."} print(dict[us])
@sameerverma3170
@sameerverma3170 5 жыл бұрын
d2 = {"creasing":"crush", "sphere":"an object that is completely round as a ball", "intermediate":"the direction in between major directions", "symbols":"marks which have a particular meaning", "axis":"an imaginary line passing through two extreme points on a sphere around which it spins"} a = input("enter the word out of dictionary: ") print("meaning=",d2[a])
@sam_shorts2253
@sam_shorts2253 2 жыл бұрын
d = {"internship":"the position of a student or trainee who works in an organization," " sometimes without pay, in order to gain work experience or satisfy " "requirements for a qualification." , "goodies": "Food, Beds & More. Pay on Delivery.Types: Electronics, " "Clothing & Accessories, Appliances, Books", "invoke": " to call forth by incantation ","Corporate ": "Corporate " "means showing your customers the face of a building instead of the face of a person."} print("You can only search internship, goodies, invoke, Corporate. From this Dictionery ") d1 = input() print(d[d1])
@priyampal30
@priyampal30 3 жыл бұрын
age=int(input("enter your age")) if 18
@ishitasarkar4506
@ishitasarkar4506 4 жыл бұрын
d1 = {"lol":"lots of love","melancholy":"another word for sadness","annoyed":"when somebody disturbs you", "adept":"skilled in his work"} print("enter a word") word = input() print(d1[word])
@kuldeepkushwaha9224
@kuldeepkushwaha9224 3 жыл бұрын
code run nhi kar raha hai apka
@sanketsoni5972
@sanketsoni5972 5 жыл бұрын
d1={"set":"group of numbers","metal":"a chemical element, such as iron or gold, or a mixture of such elements","python":"a very large snake that kills animals for food by wrapping itself around them and crushing them","organ":" a part of the body of an animal or plant that performs a particular job"} print("please enter name") n1=input() print(d1[n1])
@PrincessPunam8269
@PrincessPunam8269 3 жыл бұрын
age = 18 print("What is your age ? ") a = int(input()) if a>99: print("Type your age correctly") elif a
@aditikaushal5035
@aditikaushal5035 4 жыл бұрын
print("DICTIONARY") d={"adorable":"affection", "archives":"collection of historical documents", "abandon":"to give up", "boycott":"protest", "burst":"break open", "bury":"hide underground", "catch":"hold something", "complex":"many different connected parts", "diligent":"hard worker", "deposit":"collecting at safe" } print("enter the word:") inpword=input() print("meaning:",d[inpword])
@satysagar7109
@satysagar7109 4 жыл бұрын
Well Done Dear 👌👌👍👍❤️❤️❤️
@johndhakal495
@johndhakal495 5 жыл бұрын
x=int(input("Enter any Number")) if x%2==0: print(x," is even") else: print(x," is odd")
@himanshux21
@himanshux21 3 жыл бұрын
dic = {"abandon": "to discontinue", "arbitrary": "any, out of all that are possible", "risotto": "an italian savoury dish", "rivulet": "a small brook"} print("enter the word") inpnum1 = input() # inpnum1 stores the input as a str inpnum2 = dic.get(inpnum1) # inpnum2 gives value of inpnum1 print("the meaning of the word", inpnum1.upper(), "is", inpnum2)
@mohammedjafaraqiq2119
@mohammedjafaraqiq2119 2 жыл бұрын
print("Welcome to the Python Dictionary") dict={"Arrogate":"to claim or seize without justification", "Blandishment":"something, as an action or speech, that tends to flatter, coax, entice, etc", "Congruity":"the quality of agreeing; being suitable and appropriate", "Ephemeral":"lasting a very short time; short-lived; transitory", "Inane":"lacking sense, significance, or ideas"} print("Search from the given words") print(dict.keys()) word=input() print(dict[word])
@mrasadyt9294
@mrasadyt9294 Жыл бұрын
Harry bhai jb ap quiz ka question deaty ho mujhy smj nhi ata to mein comments deakh k smj leta hon because Mery English weak hy but mujhy ap ki smj Aa rhi hy maza Ata hy ap ki videos deakh k
@Eren00746
@Eren00746 2 жыл бұрын
d1 = {"set":" set is a well defined collection of object" } d2 ={"History " : "History we all should read it contains very ancient words"} d3={"collected":"anything are collect"} d4= {"Ram":"god"} print (d1["set"])
@HarshMetkar
@HarshMetkar 4 жыл бұрын
Mobile pe pura code type karne mai bahot time jata hai, but yes sare exercises and quize karne mai maza aaraha hai n complete bhi ho raha hai.
@historical_events4U
@historical_events4U 2 жыл бұрын
Hello sir I'm from Myanmar I'm so happy for the videos that you are making
@adarshsahu4638
@adarshsahu4638 2 жыл бұрын
d = {"abongation":"renouncing a belief of dactrine","aggarandize":"enhance power","alarcity":"eagerneess","archetypal":"quintessential of a certain kind"} print("enter the word") word=(input()) print(d[word])
@adarshsahu4638
@adarshsahu4638 2 жыл бұрын
can you check this??
@arhaanahmad3953
@arhaanahmad3953 2 жыл бұрын
d1 = {"API Gravity": "a measure of the lightness or heaviness of petroleum that is related to density and specific gravity ", "Asphalt": "a nonvolatile product of petroleum refining used for road construction", "Carbenes": "the fraction of petroleum that is insoluble in benzene but soluble in pyridine", "Diagenesis": "the concurrent & consecutive chemical reactions that result in the formation of petroleum from marine sediments"} var1 = input("Enter word you are searching: ") print(d1[var1])
@badmintonsight5652
@badmintonsight5652 2 жыл бұрын
d1 = {} d2 = {"Immutable":"The things which we can't change" ,"mutable":"Which we can change","scale":"Object used in maths" ,"Cube":"A toy"} print("Enter your word:-") dict =input() print("It's meaning",d2[dict])
@cric_newsmaasi695
@cric_newsmaasi695 3 жыл бұрын
dict={'mutable':'can change','immutable':'cannot change','dictionary':'pairs of keys and value','my laptop':'lenevo' ,'my mobile':'realme','dog':'barking','rehan':'kuchh na','massi':'biryani'} print("meaning of ") input=input() print("is") print(dict[input])
@harshitachaurasia1246
@harshitachaurasia1246 4 жыл бұрын
spending quarantine well here
@fittvicky7796
@fittvicky7796 4 жыл бұрын
Hii
@sadboisushi
@sadboisushi 4 жыл бұрын
@@fittvicky7796 SIMP
@Xarvish024
@Xarvish024 4 жыл бұрын
@@fittvicky7796 or koi kam nhi hai kya
@ideologybylakshya
@ideologybylakshya 4 жыл бұрын
@@fittvicky7796 😒😒😒
@ideologybylakshya
@ideologybylakshya 4 жыл бұрын
@AD. tech tech 😁😭❤️😁
@रतनमिश्र
@रतनमिश्र 4 жыл бұрын
dic = { "RM":"Ratan Mishra", "RS":"Rahul Sharma", "VR":"Vinay Rawat", "VB":"Vikas Bharadwaj", "India":{ "UP":"Uttar Pradesh", "MP":"Madhya Pradesh", "AP":"Arunanchal Pradesh" } } print("Enter the 2 alphabet you want to know meaning of ") var1 = input() print(dic[var1]) Love you Sir
@BakCoder
@BakCoder 3 жыл бұрын
bhai maza aa raha hai dusro ke codes dekhke bahot kuch sikhne ko mil raha hai
@ashfiyarehmani5431
@ashfiyarehmani5431 3 жыл бұрын
var1=18 print("enter your age to check whether you are eligibile for driving or not") ages=int(input()) if ages>var1: print("you are eligible for driving") elif ages==18: print("we are not sure and you have to come to us and we will check you physically") if ages7: print("you are too small to drive and you are not eligible") if ages>100 or ages
@asm5943
@asm5943 4 жыл бұрын
print("Welcome to Dictionary") d1 = {"invincible":"Insuperable","Invincible":"Insuperable", "car": "a vehicle","Car":"A vehicle"} print("search a word") n1 = input() print(d1[n1]) print("Thank you")
@ndaprep.5163
@ndaprep.5163 4 жыл бұрын
Wrong coding
@asm5943
@asm5943 4 жыл бұрын
@@ndaprep.5163 can you pls tell me, what is incorrect....cause the code is giving expected output. It would be helpful if you could correct the code.
@vijayparik4059
@vijayparik4059 3 жыл бұрын
student_data ={"vijay":32,"shyam":99,"sanket ":100} print("enter the name to know marks") name = input() print(name,"got this mark ",(student_data[name]))
@nomantahir2132
@nomantahir2132 2 жыл бұрын
thankyou harry bhai. bohat help mil rhi ha appki videos se.
@joyramchowdhury7849
@joyramchowdhury7849 4 жыл бұрын
I am Joyram kanti Chowdhury.I am from Bangladesh. Your course is very much helpful to learn python. #import calendar #import dataclasses f2={"Abscond":"Run away,often taken something or somebody along","Abstruse":"Difficult to understand", "Accost":"Approach and speak to someone aggressively or insistantly ", "Accretion":"An increase by natural growth or addition","Adverse":"In an opposite direction", "Advocate":"A person who pleads for a person,cause or idea","Affluent": "Having an abundent supply of money or possessions of value","Alacrity":"Liveliness and eagerness", "Alias":"A name that has been assumed temporarily","Amorphous":"Having no definite form or distinct shape", "Annex":"Attach to"} #del f2["Sree"] #f3=f2.copy() #print(f2.items()) #print(f2.keys()) #del f2["Alias"] print("Enter your word : ") word = input() print("The meaning of the word is: ") print(f2.get(word))
@Arjun_Singh_Rajput121
@Arjun_Singh_Rajput121 3 жыл бұрын
sir i am new on your i am just started python thank you so much harry sir dic1={"arjun":"tea", "anjali":"tea","anshika":{"l":"cream roll"}} print(dic1["anshika"]) print("enter the name ") name=input() print(dic1[name])
@abdurrabkhanIIT
@abdurrabkhanIIT 3 жыл бұрын
I know i am late but i tried, dict1 = {"variable":"A container that contains code","success":"never give up","ignore":"refuse to take notice of or acknowledge"} # print(dict1.keys()) print("Choose word for meaning", dict1.keys()) meaning = input() print(meaning, "means", dict1[meaning])
@gopikishan1028
@gopikishan1028 4 жыл бұрын
print("enter a word") inpnum = input() d1 = {"high":"up","below":"down","away":"far","close":"near"} print(d1[inpnum]) #Thank you harry for your great efforts . you make things look simple
@dreamerb1
@dreamerb1 Жыл бұрын
Thank you harry bhai❤❤❤❤
@manishroy7654
@manishroy7654 3 жыл бұрын
a=input("what is the word ") dic={ "tender" : "showing gentleness kindness and affection like.he was being so kind and tender ", "fast" : "moving or capable of moving at high speed like.a fast and powerful car ", "bookshelf" : "a shelf on which books can be stored." , "televison" : "a system for converting visual images (with sound) into electrical signals transmitting them by radio or other means and displaying them electronically on a screen."} print(dic[a])
@dakshyadav7296
@dakshyadav7296 3 жыл бұрын
d1= {"mutable":"the thing which can change.", "immutable":"the thing which cannot change.", "module":"it is a file containg defination of python and statement too.", "python interpreter":"it is a virtual machine."} name = input("enter the name.") print(d1[name])
@saksham68267
@saksham68267 2 жыл бұрын
d1={"fan":"pankha","light":"bulb","door":"darvaza","mirror":"kach","bucket":"balti"} print("the meaning of") s=input() print("is") print(d1[s])
@zonaahsan2008
@zonaahsan2008 5 жыл бұрын
d1={"software engr":"this is the branch of engreering which gives tecnology and information", "artitecture": "it is a collection of arts and design to the buildings","information":"it is the collection of the data" ,"data": "it is the collection of the facts and figures","mutable":"can change","immutable":"can not change" ,"typecasting":"any integers can change in to the string"} n1=input("enter your search word") print(d1[n1])
@deepchirag4604
@deepchirag4604 4 жыл бұрын
sir how it is? actually i tried to take whole data from the user. -_-" that's why i used for loop d1={} n=int(input("How many data you want to enter in the dictionary? ")) for i in range(0,n): a=input("Enter Name: ") b=input("Enter its value: ") d2=d1.update({a:b}) print(d1) c=input("Enter the name to get data") print(d1[c])
@satysagar7109
@satysagar7109 4 жыл бұрын
👍👍👍👍👍
@ajaysharma55i
@ajaysharma55i 3 жыл бұрын
d={'mutable':'can be chane','immutable':'cannot change','variable':'it is a container','python':'programing language'} a=input('enter the letter to find the meaning of it ') print('the maening of the given word is',d[a])
@priyasingh4614
@priyasingh4614 2 жыл бұрын
print("enter the word") n = input() d1 = {"applaud":"to praise","bonafide":"true","dazzle":" to surprise","garb":"clothing","hale":"healthy"} print( d1[n] )
@prashansasonalkar4678
@prashansasonalkar4678 4 жыл бұрын
Dict = {"ignore":"refuse to take notice of or acknowledge", "abandon":"cease to support or look after", "exaggerate":"enlarged or altered beyond normal proportions", "prejudice":"preconceived opinion that is not based on reason or actual experience"} Data1 = input("Enter the Word:") print(Data1, "means", Dict[Data1])
@saurabhmaurya2702
@saurabhmaurya2702 2 жыл бұрын
age=int(input("Enter your Age")) if(age18): print("You are Eligible to ride") elif(age==18): print("Please visite RTO office for your Ride test")
@SatyamTechnicalTyagi
@SatyamTechnicalTyagi 2 жыл бұрын
d1= {"Thermal":"It is a word from greek language which is used to denote and indicate the heat", "Temperature":"It is a a word which show the degree of hotness", "Thermometer":"Degree of hotness and coldness", "Define":"To explain something"} a = input("enter the value:") print(d1[a])
@computer0233
@computer0233 Жыл бұрын
dict = {"Gigantic":"Heavy","Slice":"Cut","Execute":"Carry Out"} a = input("Enter The erial no.:") dict = {"Gigantic":"Heavy", "Slice":"Cut", "Execute":"Carry Out"} print(dict[a])
@computer0233
@computer0233 Жыл бұрын
i AM JUSSSST A KID
@Rohitkumar-dg9qi
@Rohitkumar-dg9qi 4 жыл бұрын
dict = {"file":"collections of items","edit":"change or modify","view":"to display","tools":"instruments"} data= input("enter the word : from th list: file,edit,view,tools ") print(dict[data])
@KamalKumar-lr7wg
@KamalKumar-lr7wg 5 жыл бұрын
dict = { "variable":"Temporary stored memory location", "constant":"Immutable variable", "datatype":"Type of Data", "keywords":"Reseerved Words" } print("Enter Word for Meaning: ") wrd = input() print(dict.get(wrd))
@Nikhil-ov6sm
@Nikhil-ov6sm 3 жыл бұрын
d = {"Procrastinate":"to postpone some good work", "just":"right", "drawbacks":"disadvantages of something", "69":"NFSW Warning"} print("Word: ", end="") inpuser= input() print("Meaning: ", end="") print(d[inpuser])
@captaingrit
@captaingrit 4 жыл бұрын
oxford={"Bliss":"perfect happines", "tackle":"to stop","repercussion":"results", "notion":"idea","dexter":"skill"} search=input("enter what you want to search ") m=search.capitalize() print(m,"=",oxford[search])
@funwithsona7645
@funwithsona7645 2 жыл бұрын
print("Welcom to Dictionary") list = {"Exceptional":"very unusual; unusually good", "Accomplished":"highly skilled at something", "Alliance":"an agreement between group", "Directorate":"the board of directors of a company"} print("Search word meaning") search = input() print(list[search]) print("Thank you for a using this Dectionary")
@pushpitjain1717
@pushpitjain1717 3 жыл бұрын
age = int(input()) if 18 < age < 60: print("Yes you can drive") elif age == 18 or age == 60: print("come to centre") if age < 18 or age > 60: print("no you can't drive")
@Innocent-Alive
@Innocent-Alive Жыл бұрын
Dictionary={"Apple":"Fruit","Lion":"Animal","Mercedes":"Car","Potato":"Vegetable","America":"Country"} print(Dictionary.keys()) d1=input("Enter A Word From The Above To Know It's Meaning: ") if d1 in Dictionary: if Dictionary[d1] == "Animal": print(d1, "Means an", Dictionary[d1]) else: print(d1, "Means a", Dictionary[d1]) else: print("Word not found in the dictionary.") # try this one
@pratikpatidar4452
@pratikpatidar4452 3 жыл бұрын
oxford={"claustrophobia":"feeling fear in closed space like lifts","amendment":"a change in the words of a document","toxicity":"the fact of being poisonous"} print("words: claustrophobia amendment toxicity") search=input("enter the word to be searched ") if search in oxford: print(oxford[search]) else: print("word not found")
@pratikpatidar4452
@pratikpatidar4452 3 жыл бұрын
program to find word meaning present in dictionary. if word is not in dictionary then it shows word not found. i hope u like this program.
@itengineer-t5j
@itengineer-t5j 4 жыл бұрын
#modified """That's how we will dictate the TIMING in English Language""" dict={"4:00":"Its 4'o clock", "4:15":"Its quarter past 4", "4:30":"Its Half Past 4/Its Half to 5", "4:45":"Its quarter to 5",} timing=input("enter time like:") print(dict[timing])
@saurabhsahu713
@saurabhsahu713 5 жыл бұрын
d1={"cadence":":A rythemic sequence or flow of sound in language..", "snippet":":A small pieace of somthing,especially information or news", "jurisdiction":":The official power to take legal decision or judgement", "diplomacy":":The activity of managing relationship between different countries"} print("Choose any word from these (cadence,snippet,jurisdiction,diplomacy) to know their meaning") print(d1.get(input()))
@mohammedrizwan1335
@mohammedrizwan1335 4 жыл бұрын
dict = {"Harry" : "code man", "mutable" : "can change", "immutable" : "can not change", } n = input("search word : ") print(dict[n])
@yuvrajkari8647
@yuvrajkari8647 4 жыл бұрын
I m getting error in this code . Error - word is not defined
@ronaksankhala09
@ronaksankhala09 4 жыл бұрын
Bhai I think error yours code
@yuvrajkari8647
@yuvrajkari8647 4 жыл бұрын
@@ronaksankhala09 mai python 2.7 use krra hu toh isiliye aarha tha fir mai raw_input() kiya toh error ni de rha ab
@ronaksankhala09
@ronaksankhala09 4 жыл бұрын
@@yuvrajkari8647 ok Bhai 😊
@saranshtiwari8543
@saranshtiwari8543 2 жыл бұрын
dict={"Book":"Knowledge", "Set":"Group of well defined objects", "List":"Mutable", "Tuple":"Immutable"} x=input("Enter the word you need to find form our dictionary : ") print(dict.get(x))
@mayukh6639
@mayukh6639 Жыл бұрын
print("enter any word:") n1=input() dict = {"Mutable": "we can change", "enthusiastic": "full of energy", "able": "can do anything", "MK2": {"B": "MAGGIE", "L": "ROTI"}} print(dict.get(n1)) HARRY BHAI please check and reply me
@omersultan7984
@omersultan7984 5 жыл бұрын
d1 ={"apple":"saib","banana":"keela","mango":"aam","orange":"maalta"} print("enter some fruit name ") a1=input() print("same name of the fruit in urdu ",end='is ') print(d1[a1])
@quoteoftheday7526
@quoteoftheday7526 4 жыл бұрын
d1 ={"apple":"saib","banana":"keela","mango":"aam","orange":"maalta"} print("enter some fruit name ") a2=input() print("same name of the fruit in urdu is ") print(d1[a2])
@prasnikgroup4492
@prasnikgroup4492 4 жыл бұрын
#hi harry, this is Nikhil a= {'prasoon':'he wants to be a billionre','nikhil':'He also wants to be a billionre', 'aakash':'he wants to be a army officer'} name=input(('enter any of name to know their goals')) print(a[name])
@shilpikumari1761
@shilpikumari1761 2 жыл бұрын
mydict = { 'Ability':'Capability', 'Bossy':'controlling', 'Cold':'Chilled', 'Develop':'Grow', 'Excited':'Electrified', 'Great':'Extraordinary' } for keys in mydict: print(keys) print() userinput = input("Enter the Word from the above list to find the meaning: ") print("Meaning: ", mydict[userinput])
@hasansheikh3063
@hasansheikh3063 5 жыл бұрын
print("enter your age to check wheather you can drive or not") print(" enter you age") age=int(input()) if (age7): print("you can't drive wait for ",18-age ,"years") elif(age18): print("you can drive") elif(age==18): print("we can't decide plz visit our office") else: print("wrong entry")
@lakshyayadav3279
@lakshyayadav3279 2 жыл бұрын
Bhai maza aa raha hai is series me. Love your work
@RDXSachinChaudhary
@RDXSachinChaudhary 2 жыл бұрын
d1 = {"Giveup":"To Leave", "Succes":"To Achieve Something", "Love":"Attraction", "Hate":"Not to Like someone" } print("Enter any word from the following to get the meaning (words are case sensitive) ""Giveup, Success, Love, Hate: ",) word = input() print("The Meaning of you chosen word is= " , d1.get(str(word)))
@nimikhan1547
@nimikhan1547 3 жыл бұрын
Harry bhai ma ny video abi dekhi..and ma ny exercise b ki h.. Bht mza a rha is playlist ko dekhty hvy
@smitjabuani3334
@smitjabuani3334 3 жыл бұрын
print ("what is your age") age =int(input ()) if age
@perusamulasaikumar4527
@perusamulasaikumar4527 2 жыл бұрын
d2 = {"Desperate":"having a great need or desire for something","Dizzy":"Mentally confused","Commercial":"making or intended to make a profit"} search = input("") print(d2[search])
@prathmeshmaheshkatkade4834
@prathmeshmaheshkatkade4834 4 жыл бұрын
print("please enter your age") age=int(input()) if age
@travelandfunineurope
@travelandfunineurope Жыл бұрын
print("ENTER THE WORDS:") dict_one = {"lack": "something missing or needed", "canalize": "to convert into a canal", "campaign": "Military", "aggressive": "characterized by"} words = input() print(dict_one[words])
@ejazharoon1219
@ejazharoon1219 4 жыл бұрын
print("enter your age") age=int(input()) if age7: print("you can not drive") elif age==18: print("i can think about u") elif age>18 and age
@mdziaurrahmanjual6478
@mdziaurrahmanjual6478 2 жыл бұрын
user=input("Enter the Word : ") dict={"data":"information" ,"pc": "computer", "water": "water gives us life", "udvash":"this is my job place"} print(dict[user])
@sr-sunny-raj
@sr-sunny-raj 3 жыл бұрын
dic = {"mutable": "Objects/things whose values can be changed", "immutable": "Objects/things whose value can't be changed", "append": "to add something to the end of a written document", "assign": "allocate", "list": "a number of connected items or names written or printed consecutively"} print(dic.get((input("Enter the word to see it's meaning :- ")), "Word not found in the dictionary"))
@darshandugar3740
@darshandugar3740 4 жыл бұрын
dict={"set":"group of word","teacher":"who teaches you like code with harry","spendthrift":"a person who spen money unnecessary","exam":"whcih judge ypur skill"} print("enter a word to be searched "); word=input() print("ans is ",dict.get(word))
React Tutorial for Beginners
1:20:04
Programming with Mosh
Рет қаралды 3,6 МЛН
Try this prank with your friends 😂 @karina-kola
00:18
Andrey Grechka
Рет қаралды 9 МЛН
“Don’t stop the chances.”
00:44
ISSEI / いっせい
Рет қаралды 62 МЛН
Sigma Kid Mistake #funny #sigma
00:17
CRAZY GREAPA
Рет қаралды 30 МЛН
Python Full Course for free 🐍
12:00:00
Bro Code
Рет қаралды 20 МЛН
Python 101: Learn the 5 Must-Know Concepts
20:00
Tech With Tim
Рет қаралды 1,2 МЛН
31 nooby C++ habits you need to ditch
16:18
mCoding
Рет қаралды 839 М.
Top Skills to Learn in 2025
9:31
CodeWithHarry
Рет қаралды 242 М.
threading vs multiprocessing in python
22:31
Dave's Space
Рет қаралды 598 М.
Алгоритмы на Python 3. Лекция №1
1:20:50
Тимофей Хирьянов
Рет қаралды 5 МЛН
Python Tutorial for Absolute Beginners #1 - What Are Variables?
24:38
Try this prank with your friends 😂 @karina-kola
00:18
Andrey Grechka
Рет қаралды 9 МЛН