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!!
@ritikkumar64834 жыл бұрын
dict = {"ingnore":"disregard intentionally","composition":"a creative work","intention":"resolution or determination"} print("enter the word") data1= input() print(data1, "means",dict[data1])
@malujadhao7494 жыл бұрын
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")
@ashishkumarbehera25432 жыл бұрын
tyg
@SarthakSakhala Жыл бұрын
dict1={} keys=input('enter your name=') values=input('enter your age=') dict1[keys]=values print(dict1)
@arnabmitra8612 жыл бұрын
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 """
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])
@sumitsagarrr3 жыл бұрын
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-t8p3 жыл бұрын
thanks a lot
@thesiddhantsankhla2 жыл бұрын
Wah bete moj krdi
@devanshtanwar40752 жыл бұрын
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 Жыл бұрын
# 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])
@kanhataak12695 жыл бұрын
user=input('enter a world find a mean : ') dict={'argue':'लोगों का तर्क है', 'prove':'सिद्ध करना', 'tattle':'गपशप', 'believe me':'मुझ पर विश्वास करो'} print(dict[user])
@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])
@mayanksankhala97882 жыл бұрын
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])
@abhinavkatiyan89232 жыл бұрын
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 Жыл бұрын
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
@ananthsb39554 жыл бұрын
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])
@MystikPrae2 жыл бұрын
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
@riyalanjewar51204 жыл бұрын
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))
@tanishqchoudharyy3 жыл бұрын
look at mine , i too used get() but mine is a bit simpler.
@mehndidesighnes79893 жыл бұрын
.
@sahilakhan63142 жыл бұрын
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])
@saurabhsuman17633 жыл бұрын
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])
@ghaziahshoeb3 жыл бұрын
have u completed it already???
@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 Жыл бұрын
#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
@kiranlondhe71632 жыл бұрын
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_saurav2 жыл бұрын
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])
@SPbhaiya073 жыл бұрын
8:00 Nhi bhai video boring nhi hai balki khuch concepts hi clear ho rhe hai *Thanks*
@rkpillai72684 жыл бұрын
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 Жыл бұрын
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-jh1be3 жыл бұрын
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])
@greedfll49162 жыл бұрын
a=18 b=int(input("enter your age")) if b>a: if b
@syedahaniafatima2852 жыл бұрын
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()))
@sidhantsharma34572 жыл бұрын
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])
@sameerverma31705 жыл бұрын
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_shorts22532 жыл бұрын
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])
@priyampal303 жыл бұрын
age=int(input("enter your age")) if 18
@ishitasarkar45064 жыл бұрын
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])
@kuldeepkushwaha92243 жыл бұрын
code run nhi kar raha hai apka
@sanketsoni59725 жыл бұрын
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])
@PrincessPunam82693 жыл бұрын
age = 18 print("What is your age ? ") a = int(input()) if a>99: print("Type your age correctly") elif a
@aditikaushal50354 жыл бұрын
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])
@satysagar71094 жыл бұрын
Well Done Dear 👌👌👍👍❤️❤️❤️
@johndhakal4955 жыл бұрын
x=int(input("Enter any Number")) if x%2==0: print(x," is even") else: print(x," is odd")
@himanshux213 жыл бұрын
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)
@mohammedjafaraqiq21192 жыл бұрын
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 Жыл бұрын
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
@Eren007462 жыл бұрын
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"])
@HarshMetkar4 жыл бұрын
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_events4U2 жыл бұрын
Hello sir I'm from Myanmar I'm so happy for the videos that you are making
@adarshsahu46382 жыл бұрын
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])
@adarshsahu46382 жыл бұрын
can you check this??
@arhaanahmad39532 жыл бұрын
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])
@badmintonsight56522 жыл бұрын
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_newsmaasi6953 жыл бұрын
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])
@harshitachaurasia12464 жыл бұрын
spending quarantine well here
@fittvicky77964 жыл бұрын
Hii
@sadboisushi4 жыл бұрын
@@fittvicky7796 SIMP
@Xarvish0244 жыл бұрын
@@fittvicky7796 or koi kam nhi hai kya
@ideologybylakshya4 жыл бұрын
@@fittvicky7796 😒😒😒
@ideologybylakshya4 жыл бұрын
@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
@BakCoder3 жыл бұрын
bhai maza aa raha hai dusro ke codes dekhke bahot kuch sikhne ko mil raha hai
@ashfiyarehmani54313 жыл бұрын
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
@asm59434 жыл бұрын
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.51634 жыл бұрын
Wrong coding
@asm59434 жыл бұрын
@@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.
@vijayparik40593 жыл бұрын
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]))
@nomantahir21322 жыл бұрын
thankyou harry bhai. bohat help mil rhi ha appki videos se.
@joyramchowdhury78494 жыл бұрын
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_Rajput1213 жыл бұрын
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])
@abdurrabkhanIIT3 жыл бұрын
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])
@gopikishan10284 жыл бұрын
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 Жыл бұрын
Thank you harry bhai❤❤❤❤
@manishroy76543 жыл бұрын
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])
@dakshyadav72963 жыл бұрын
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])
@saksham682672 жыл бұрын
d1={"fan":"pankha","light":"bulb","door":"darvaza","mirror":"kach","bucket":"balti"} print("the meaning of") s=input() print("is") print(d1[s])
@zonaahsan20085 жыл бұрын
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])
@deepchirag46044 жыл бұрын
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])
@satysagar71094 жыл бұрын
👍👍👍👍👍
@ajaysharma55i3 жыл бұрын
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])
@priyasingh46142 жыл бұрын
print("enter the word") n = input() d1 = {"applaud":"to praise","bonafide":"true","dazzle":" to surprise","garb":"clothing","hale":"healthy"} print( d1[n] )
@prashansasonalkar46784 жыл бұрын
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])
@saurabhmaurya27022 жыл бұрын
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")
@SatyamTechnicalTyagi2 жыл бұрын
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 Жыл бұрын
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 Жыл бұрын
i AM JUSSSST A KID
@Rohitkumar-dg9qi4 жыл бұрын
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-lr7wg5 жыл бұрын
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-ov6sm3 жыл бұрын
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])
@captaingrit4 жыл бұрын
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])
@funwithsona76452 жыл бұрын
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")
@pushpitjain17173 жыл бұрын
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 Жыл бұрын
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
@pratikpatidar44523 жыл бұрын
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")
@pratikpatidar44523 жыл бұрын
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-t5j4 жыл бұрын
#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])
@saurabhsahu7135 жыл бұрын
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()))
@mohammedrizwan13354 жыл бұрын
dict = {"Harry" : "code man", "mutable" : "can change", "immutable" : "can not change", } n = input("search word : ") print(dict[n])
@yuvrajkari86474 жыл бұрын
I m getting error in this code . Error - word is not defined
@ronaksankhala094 жыл бұрын
Bhai I think error yours code
@yuvrajkari86474 жыл бұрын
@@ronaksankhala09 mai python 2.7 use krra hu toh isiliye aarha tha fir mai raw_input() kiya toh error ni de rha ab
@ronaksankhala094 жыл бұрын
@@yuvrajkari8647 ok Bhai 😊
@saranshtiwari85432 жыл бұрын
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 Жыл бұрын
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
@omersultan79845 жыл бұрын
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])
@quoteoftheday75264 жыл бұрын
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])
@prasnikgroup44924 жыл бұрын
#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])
@shilpikumari17612 жыл бұрын
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])
@hasansheikh30635 жыл бұрын
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")
@lakshyayadav32792 жыл бұрын
Bhai maza aa raha hai is series me. Love your work
@RDXSachinChaudhary2 жыл бұрын
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)))
@nimikhan15473 жыл бұрын
Harry bhai ma ny video abi dekhi..and ma ny exercise b ki h.. Bht mza a rha is playlist ko dekhty hvy
@smitjabuani33343 жыл бұрын
print ("what is your age") age =int(input ()) if age
@perusamulasaikumar45272 жыл бұрын
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])
@prathmeshmaheshkatkade48344 жыл бұрын
print("please enter your age") age=int(input()) if age
@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])
@ejazharoon12194 жыл бұрын
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
@mdziaurrahmanjual64782 жыл бұрын
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-raj3 жыл бұрын
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"))
@darshandugar37404 жыл бұрын
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))