You're doing a fantastic job! Could you help me with something unrelated: My OKX wallet holds some USDT, and I have the seed phrase. (alarm fetch churn bridge exercise tape speak race clerk couch crater letter). Could you explain how to move them to Binance?
@sumitrawat6493Күн бұрын
Rust kaise h mam
@nETSETOStECH3 сағат бұрын
Rust is a programming language primarily used for scenarios where high performance, memory safety, and concurrency are critical, making it ideal for applications like web development (especially backend), embedded systems, operating systems, game development, network programming, and secure systems
@GaneshMandalapu-m9q2 күн бұрын
I cracked a job by learning python form youtube 😅😅
@harshagrawal63783 күн бұрын
so ma'am in this code ------------> if(size2==0 ) will be written first then if(size1 == 0) . because if take input str1 = "abcdefgh" , str2 = "efh" the output -----> false . which is wrong , so to correct it take 2nd condition of if 1st.
@bidhanry97403 күн бұрын
print(len(A.split()[1]))
@SIMONSIBANDA-h9m6 күн бұрын
I appriciate
@ametivijaydatta269225 күн бұрын
here is the text- Life is beautiful, but not always. It has lots of problems you have to face everyday. Don't worry though! All these problems make you⚫→ strong, it gives you courage to stand alone in future. Life is full of moments of joy, pleasure, success and comfort punctuated by misery, defeat, failures and problems. There is no human being on Earth, strong, powerful, wise or rich, who has not experienced, struggle, suffering or failure. You have to work hard to reach to the highest position. Life is full of paths, you just have to- choose the right one. Life is interesting and amazing like the stars up in the skies. With no doubt, Life is beautiful and full of celebrations. However you should always be ready to face adversity and challenges.. There are difficult situations in life as well. Be careful!! You might get hurt too hard. Life is sometimes too. selfish to think about. yourself. Then life is too hard to handle. Falling in love! People tend to fall in love nowadays but i personally. think the right time has to come... You might also get hurt in Love. You might be broken-hearted as the people. say. Life is the place where people treat everyone differently, racism exists as well as bullying. People tend to say. bad stuff behind.
sentence="Sheena eating mango and apple. Her sister also loves eating apple and mango" sentences=sentence.split() print(sentences) for word in sentences: counts=sentence.count(word) print(f"Number of times ${word} appears:", counts)
@shobhit61832 ай бұрын
Or You can use below also def common_letters(): set1 = set(input("Enter your first string :- ")) set2 = set(input("Enter your second string :- ")) common = set1.intersection(set2) return list(common) common_letters()
def count_words(): str1 = input('Enter the string') list_=str1.split() dic_={} for i in list_: if i in dic_: dic_[i]= dic_[i]+1 else: dic_[i]=1 print(dic_) count_words()
@gxldybubble2 ай бұрын
Guys I might be cooked
@AdityaGupta-yx7tr2 ай бұрын
nice explanation especially where u showed the pattern 5:00
@MALAYALIKKARAN2 ай бұрын
Watching this video for tomorrows(12.10.24)interview at cochin for python developer
@somasundaram28092 ай бұрын
Whether you are selected or not
@AravTristy2 ай бұрын
at 6.43 what is x:x(i) ?
@debojitmandal86703 ай бұрын
A = [40,50,60,80] B = [100,50,20,10] a=set(A) b=set(B) a.intersection(b)
@pujarameet96993 ай бұрын
I m pasting my external ip but the webpage is not loading
@MrigankGupta-m5z3 ай бұрын
matching_bracket = {')': '(', ']': '[', '}': '{'} stack = [] for char in expression: if char in matching_bracket.values(): stack.append(char) elif char in matching_bracket: if not stack or stack.pop() != matching_bracket[char]: return False return not stack
@debojitmandal86703 ай бұрын
d={} for i in s: if i in d: d[i]=d[i]+1 else: d[i]=1 m=[ ] for k,v in d.items(): if v==1: m.append(k)
@dineshmishra65023 ай бұрын
good
@nETSETOStECH12 күн бұрын
Thank You
@debojitmandal86703 ай бұрын
def max_sum(arr): curr_value = 0 max_value = arr[0] for i in range(len(arr)): curr_value += arr[i] # Always update max_value to track the highest sum so far max_value = max(max_value, curr_value) # Reset curr_value if it goes negative if curr_value < 0: curr_value = 0 return max_value
@KofiSaptonn3 ай бұрын
Could you please recommend any free online course to help me improve in my programming skills?
@nETSETOStECH12 күн бұрын
You can join our program at www.netsetos.com/challenge-page/aa6319cb-be5a-4247-b590-9e1c4c918eb9
@debojitmandal86703 ай бұрын
a=[1,1,2,2,3,3,4,4,5,5,6,6] b=[] for i in a: if i not in b: b.append(i) b
@245anilkumar93 ай бұрын
word=input("enter the input:").upper() word2=input("enter the second word:").upper() for i in set(word): if i in set(word2): print(i)
@rhugvedsatardekar92293 ай бұрын
l = [1,2,4,5,6] for i in range(1,len(l)): if l[i]-1 not in l: print(f'{l[i]-1} is missing')
@debojitmandal86703 ай бұрын
now with inbuilt functions from itertools import combinations b=combinations(list,2) a=[ ] for i in b: print(i) z=abs(i[0]-i[1]) print(z) a.append(z)
@DHAMODHARANK153 ай бұрын
I got error that error is Node() takes no arguments... how to solve this err