What is The Joy of Computing Using Python?
Python is a popular programming language that is easy to learn and widely used for various applications such as web development, data science, and artificial intelligence. Learning Python can be a joyous experience as it allows you to create your own programs, automate tasks, and solve real-world problems.
Here are some tips to help you experience the joy of computing using Python:
- Start with the basics: Before diving into advanced topics, it is essential to learn the basics of Python such as syntax, data types, and control structures. This will help you build a strong foundation and make it easier to learn more advanced topics.
- Practice coding: The more you practice coding, the better you will get at it. You can start by writing simple programs and gradually move on to more complex ones. There are also many online resources such as coding challenges and competitions that can help you improve your coding skills.
- Learn from others: There is a vast community of Python developers who are always willing to help and share their knowledge. You can join online forums, attend meetups, and participate in online communities to learn from other developers.
- Use Python libraries: Python has a vast ecosystem of libraries and frameworks that can help you solve complex problems quickly. Some popular libraries include NumPy, Pandas, and Matplotlib for data science, Django and Flask for web development, and Pygame for game development.
- Have fun: Learning Python should be an enjoyable experience, so don't be afraid to experiment and have fun with it. You can build your own projects, such as a simple game, web app, or automation script, to make your learning experience more engaging and enjoyable.
Week 11: Programming Assignment 1
Input:
3
4
5
Output
YES
Solution :
a=int(input())
b=int(input())
c=int(input())
L=[a,b,c]
h=max(L)
L.remove(h)
if h**2==L[0]**2+L[1]**2:
print("YES",end="")
else:
print("NO",end="") |
Week 11: Programming Assignment 2
Input:
hey#input#bye
Output:
input#hey#bye
Solution :
L=sorted(input().split("#"),reverse=True)
print("#".join(L),end="") |
Week 11: Programming Assignment 3
Input:
10
20
Output:
Solution :
prime=[2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53,
59, 61, 67, 71, 73, 79, 83, 89, 97, 101, 103, 107, 109, 113,
127, 131, 137, 139, 149, 151, 157, 163, 167, 173, 179, 181,
191, 193, 197, 199, 211, 223, 227, 229, 233, 239, 241, 251,
257, 263, 269, 271, 277, 281, 283, 293]
a=int(input())
b=int(input())
for i in range(a,b+1):
if i not in prime:
print(i) |
CRITERIA TO GET A CERTIFICATE
Average assignment score = 25% of the average of the best 8 assignments out of the total 12 assignments given in the course.
Exam score = 75% of the proctored certification exam score out of 100
Final score = Average assignment score + Exam score
YOU WILL BE ELIGIBLE FOR A CERTIFICATE ONLY IF THE AVERAGE ASSIGNMENT SCORE >=10/25 AND THE EXAM SCORE >= 30/75. If one of the 2 criteria is not met, you will not get the certificate even if the Final score >= 40/100.
| The Joy of Computing Using Python | Answers |
| Assignment 1 | Click Here |
| Assignment 2 | Click Here |
| Assignment 3 | Click Here |
| Assignment 4 | Click Here |
| Assignment 5 | Click Here |
| Assignment 6 | Click Here |
| Assignment 7 | Click Here |
| Assignment 8 | Click Here |
| Assignment 9 | Click Here |
| Assignment 10 | Click Here |
| Assignment 11 | Click Here |
| Assignment 12 | Click Here |
Comments
Post a Comment