#python
Read more stories on Hashnode
Articles with this tag
03/25/23 · GitHub Link for Project Error Fix The server cannot bring Flask API -> shut down other running servers Unable to load react-bootstrap npm...
03/16/23 · Problem 1. GCD and LCM import math a, b = map(int, input().split()) gcd = math.gcd(a, b) print(gcd) print(a * b // gcd) Problem 2. Triangle...
03/01/23 · Today, I learned how to crawl websites using the Beautiful Soup Python library. In addition, I created a MongoDB account and utilized PyMongo...
02/26/23 · Operator print(10 // 3) # quotient - 3 print(10 % 3) # remainder - 1 print(10 ** 2) # exponential - 100 String str1 = 'Hello' str2 =...