Coding Buddies
529 subscribers
63 photos
1 video
37 files
479 links
This is the official telegram channel of Coding Buddies. If you have any doubt then you can message in our telegram group. Also if you want to chat with me personally then you can ping me here @kishan_rajput23
Download Telegram
πŸ‘‰ Hey guys week 11 solution uploaded

πŸ‘‰ The joy of computing using python Week 11 Quiz Answers

πŸ‘‰ Please Like Share & CommentsπŸ™

πŸ‘‰ Happy LearningπŸ‘
Complete machine learning and data science course with Python. Pandas, NumPy, Scikit-learn and Matplotlib covered in details.


https://drive.google.com/folderview?id=1bFcmRP5EAtksPtjiuV9qpHyNK6sci8WM
πŸ‘‰ Hey guys week 12 solution uploaded

πŸ‘‰ The joy of computing using python Week 12 All 3 Programming Assignments Answers

πŸ‘‰ Please Like Share & CommentsπŸ™

πŸ‘‰ Happy LearningπŸ‘
πŸ‘‰ Hey guys week 12 solution uploaded

πŸ‘‰ The joy of computing using python Week 12 Quiz Answers

πŸ‘‰ Please Like Share & CommentsπŸ™

πŸ‘‰ Happy LearningπŸ‘
Coding Buddies pinned Β«https://youtu.be/dsEwdVTVJRgΒ»
❗️❗️Attention friends❗️❗️

I'll definitely share my answer with you all of tommorow's programming question.

I request you to all please wait at least first 20 minutes because I'm also giving this exam first time so I need some time to solve that particular question.

Till than you can try it by yourself for checking your understanding and preparation for the exam.

As soon as I complete I'll share programming solution here. So, that you can just copy it and paste it there.

You can attend both the session of tommorow's exam because the session in which you will get higher score that score will be count for your final exam.

If you have any query then please feel free to ask in discussion group. I hope I can help you as much as I can.

Thank you!!
Coding Buddies pinned «❗️❗️Attention friends❗️❗️ I'll definitely share my answer with you all of tommorow's programming question. I request you to all please wait at least first 20 minutes because I'm also giving this exam first time so I need some time to solve that particular…»
plain_text = input()
encrypted_text = input()

output = ''
for c in plain_text:
output+=chr((ord(c)+5-ord('A'))%26 + ord('A'))


def removeSpaces(str):
str = str.replace(' ','')
str = str.replace(',','')
return string.lower()
def check(output, encrypted_text):

# the sorted strings are checked
if(sorted(output)== sorted(encrypted_text)):
print("Yes",end='')
else:
print("No",end='')

check(output, encrypted_text)
AnswerπŸ‘†πŸ‘†
If anyone facing problem while running this code then let me know
Coding Buddies pinned Β«plain_text = input() encrypted_text = input() output = '' for c in plain_text: output+=chr((ord(c)+5-ord('A'))%26 + ord('A')) def removeSpaces(str): str = str.replace(' ','') str = str.replace(',','') return string.lower() def check(output…»
How many of you are going to attempt evening session programming test also?
Anonymous Poll
80%
Me
20%
Already attempted morning session
x = [int(i) for i in input().split()]

moves = 0

temp = sum(x)



if temp % len(x) == 0:

for j in range(len(x)):

if x[j] < (temp // len(x)):

moves = moves + ((temp // len(x))- x[j])

print(moves,end='')

else:

print('-1',end='')
Evening session solutionπŸ‘†
Coding Buddies pinned Deleted message
#Updated

The Joy of Computing using Python week 12 Quiz

Please change Q.4 Option (A) ❌ to Option (B)βœ…
&
Q.8 Option (B) ❌ to Option (C)β˜‘
Coding Buddies pinned Β«#Updated The Joy of Computing using Python week 12 Quiz Please change Q.4 Option (A) ❌ to Option (B)βœ… & Q.8 Option (B) ❌ to Option (C)β˜‘Β»