π Hey guys week 11 solution uploaded
π The joy of computing using python Week 11 Quiz Answers
π Please Like Share & Commentsπ
π Happy Learningπ
π 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
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π
π 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π
π The joy of computing using python Week 12 Quiz Answers
π Please Like Share & Commentsπ
π Happy Learningπ
βοΈβοΈ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!!
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)
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)
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='')
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='')
#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)β
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)βΒ»