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
#Updated

The Joy of Computing using Python week 10 Quiz

Please change Q.10 Option (A [True] ) to Option (B [False] )
Coding Buddies pinned «#Updated The Joy of Computing using Python week 10 Quiz Please change Q.10 Option (A [True] ) to Option (B [False] )»
With the hope that your life is framed with all the colours of the rainbow, sending out the happiest colours to you.🌈🌈

Wishing you all a very Happy Holi!🥳🎉
*Celebrate Holi with a free course*
Enjoy the springtime spirit of new beginnings and celebrate Holi by choosing from a wide array of personal development courses you can complete in 24 hours.

You can redeem one free course from this special selection of courses. Offer valid until April 2nd 2021.
*Link:* https://www.coursera.org/promo/holi-promo-2021
👉 Hey guys week 11 solution uploaded

👉 The joy of computing using python Week 11 All 3 Programming Assignments Answers

👉 Please Like Share & Comments🙏

👉 Happy Learning👍
Coding Buddies pinned «*Celebrate Holi with a free course* Enjoy the springtime spirit of new beginnings and celebrate Holi by choosing from a wide array of personal development courses you can complete in 24 hours. You can redeem one free course from this special selection of…»
👉 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)