Very nice and helpfull series sir ! After this can you pls make a series on DB designing and concepts. Some of the common designs might be ( Cab system, trading app, shopping app , movie , streaming platforms etc ). Thanks
@manish_kumar_17 ай бұрын
Noted
@Timezonee7 ай бұрын
Bhaiya aap Apna according continue kro Lectures ko and . Thanks for your efforts
@Untold_Stories0Ай бұрын
for i in lst: name,domain = i.split('@') if len(name) > 2: mask = name[0] + '*'*(len(name)-2) + name[-1] else: mask = name mask_with_domain = mask + '@' + domain print(mask_with_domain)
@shivamsingh-ee2jv2 ай бұрын
#2 lst=[] lst1=[] for i in Input1: lst.append(i.split("/server/")) for j in range(len(lst)): lst1.append(lst[j][1].split("/")[0]) print(set(lst1))
@raushansingh75304 ай бұрын
Input = 'Programming Aasan Hai' output = '' for i in Input: if (i.islower()) == True: output=output + (i.upper()) elif (i.isupper()) == True: output = output + (i.lower()) elif (i.isspace()) == True: output = output + i logger.info(output)
@kamalprajapati9955Ай бұрын
ip=set() for i in lst: ip.add(i.split("server/")[1].split("/")[0]) ip = list(ip) print(ip)
@GaurangDeshani7 ай бұрын
Que:1 Solution:- originalStr = "WOrd" swapCaseStr = "" for char in originalStr: if ord(char) < 97 and ord(char) >= 65: value = ord(char) + 32 swapCaseStr = swapCaseStr+chr(value) elif ord(char) >= 97 and ord(char)
@satyamkumarjha41854 ай бұрын
dude that's so goood.
@VickySah-r8z6 ай бұрын
Input = "Programming Aasan Hai" lst =[] for i in Input: if i.islower(): lst.append(i.upper()) else: lst.append(i.lower()) print(''.join(lst))
@rameshsannathi32554 ай бұрын
ip = [] for val in data: ip.append(val.split("/")[9]) print(set(ip))
@NaveenKumar-ln9vg6 ай бұрын
input = "Programming Aasan Hai" lst = [] for char in input: if char.islower(): lst.append(chr(ord(char)-32)) else: lst.append(chr(ord(char)+32)) output = (''.join(lst).replace("@",' ')) print(output)
@nupoornawathey1007 ай бұрын
Pls share questions in description
@manish_kumar_17 ай бұрын
Done
@chauhannirav5697 ай бұрын
Hi sir, which languages or tools or Database you are preferred starting data engineering..
@chauhannirav5697 ай бұрын
For fresher, I am currently studying bca last semester I have starting journey with data engineering.
@manish_kumar_17 ай бұрын
Language- Python Database- MySql
@AbhinavShukla-ki5jd4 ай бұрын
Q1 wrd="Programming Aasan Hai" newwrd="" for ch in wrd: if ch.isupper()==True: a=ord(ch) a+=32 newwrd=newwrd+(chr(a)) elif ch.islower()==True: a=ord(ch) a-=32 newwrd=newwrd+(chr(a)) elif ch.isspace()==True: newwrd=newwrd+" " print(newwrd) Q2 ans="" for ch in data: newdata=ch.split("/") ans=ans+newdata[10] print(ans)
@safiadawood56377 ай бұрын
I could have used RegEx but I don't have a good hang of it
@VickySah-r8z6 ай бұрын
for i, string in enumerate(Input): Input[i] = string.split("/server/")[1].split("/")[0] print(list(set(Input)))
@Rads_1232 ай бұрын
u="PicT" v=" " for i in u: if i.islower(): v=v+ i.upper() if i.isupper(): v=v+i.lower() print(v)
@raushansingh75304 ай бұрын
output =[] for i in Input: start_index = i.split("/server/")[1].split("/")[0] output.append(start_index) logger.info(output)
@chauhannirav5697 ай бұрын
DB series but PostgreSql okay
@manish_kumar_17 ай бұрын
Yes complete ok
@yashiyengar73667 ай бұрын
Solution 1: def swap_case(stryng): Output = "" for i in stryng: if i == i.lower(): Output += i.upper() else: Output += i.lower() return Output print(swap_case(Output)) Solution 2: def uniq_ip_finder(Input): output = [] for i in Input: for j in i.split("/"): if "10." in j: output.append(j) output = list(set(output)) return output print(uniq_ip_finder(Input))
@manish_kumar_17 ай бұрын
ip can't be always 10. Something it can be anything
@yashiyengar73667 ай бұрын
@@manish_kumar_1 can I use a regex pattern to find the ip ?
@manish_kumar_17 ай бұрын
@@yashiyengar7366 yes you can.
@yashiyengar73667 ай бұрын
@@manish_kumar_1 This should do the job then hopefully it covers all edge cases. import re def uniq_ip_finder(input_list): ip_pattern = r'\b\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\b' output = [] for i in input_list: matches = re.findall(ip_pattern, i) output.extend(matches) output = list(set(output)) return output output = uniq_ip_finder(input_list) print(output)
@satyamkumarjha41854 ай бұрын
string_reversal = "RaM Is a bAd bOy" empty_string = "" for i in string_reversal: if i.isupper() == True: i = i.lower() empty_string = empty_string+i else: i = i.upper() empty_string = empty_string+i logger.info(empty_string)////reversal without using swap case