Notes 📝 :
Telegram.me/BCA_Sem1_Notes
Telegram.me/BCA_Sem2_Notes
Telegram.me/BCA_Sem3_Notes
Telegram.me/BCA_Sem4_Notes
Telegram.me/BCA_Sem5_Notes
Telegram.me/BCA_Sem6_Notes
Code practice Channels:
Telegram.me/C_Codes_pro
Telegram.me/CPP_Codes_pro
Telegram.me/Python_Codes_pro
Telegram.me/Java_Codes_Pro
Telegram.me/Nodejs_Codes_Pro
Info channel:
Telegram.me/Btech_bca_mca
Discussion groups:
Telegram.me/bca_mca_btech
Telegram.me/bca_group_ignou
Learn coding:
Youtube.com/IgnouStudyCenter
Telegram.me/BCA_Sem1_Notes
Telegram.me/BCA_Sem2_Notes
Telegram.me/BCA_Sem3_Notes
Telegram.me/BCA_Sem4_Notes
Telegram.me/BCA_Sem5_Notes
Telegram.me/BCA_Sem6_Notes
Code practice Channels:
Telegram.me/C_Codes_pro
Telegram.me/CPP_Codes_pro
Telegram.me/Python_Codes_pro
Telegram.me/Java_Codes_Pro
Telegram.me/Nodejs_Codes_Pro
Info channel:
Telegram.me/Btech_bca_mca
Discussion groups:
Telegram.me/bca_mca_btech
Telegram.me/bca_group_ignou
Learn coding:
Youtube.com/IgnouStudyCenter
👍1
Python Codes Basic to Advance pinned «Notes 📝 : Telegram.me/BCA_Sem1_Notes Telegram.me/BCA_Sem2_Notes Telegram.me/BCA_Sem3_Notes Telegram.me/BCA_Sem4_Notes Telegram.me/BCA_Sem5_Notes Telegram.me/BCA_Sem6_Notes Code practice Channels: Telegram.me/C_Codes_pro Telegram.me/CPP_Codes_pro Telegram…»
इस बाॅट में कोड रन करना सीखें।
Learn how to run code in this bot.
See bot with Full tutorial: https://t.me/logicBots/147
लाभ (Advantage):
आप किसी को भी रियल टाइम में कोड का आउटपुट दिखा सकते हो, जिससे अगर आपके कोड में कोई गलती है तो वह भी सरलता से एक दूसरे से डिस्कस करके साॅल्व कर सकते हो।
See features written in pic ☝️☝️
You can show the output of the code to anyone in real time, so that if there is any mistake in your code, they can easily solve it by discussing with each other.
Full tutorial: https://t.me/logicBots/147
# Dimond pattern
rows = 5# @python_Codes_pro
for i in range(1, rows + 1):
for j in range(1, rows - i + 1):
print(end=" ")
for j in range(1, 2 * i):
print("*", end="")
print()
for i in range(rows - 1, 0, -1):
for j in range(1, rows - i + 1):
print(end=" ")
for j in range(1, 2 * i):
print("*", end="")
print()
👍2
import decrypto
choic = """
Enter your desier option...
1. Encrypt Your Text!
2. Decrypt Your Text!
Enter Only 1 or 2...
>> """
choose = input(choic) # Taking input from user
if choose == '1':
txt = input("Enter Your Text: \n")
encrypt = decrypto.MorseCodeCipher().encrypt(txt)
print("\nYour Morse Code is 👇🏻\n", encrypt)
elif choose == '2':
txt = input("Enter Your MorseCode: \n")
decrypt = decrypto.MorseCodeCipher().decrypt(txt)
print("\nYour Decrypted Text is 👇🏻\n", decrypt)
else:
print("\nLol try again enter correct")
exit(0)
import periodictable
Atomic_no=int(27) #taking input
Element=periodictable.elements[Atomic_no]
print(f"Atomic number {Element.number}\n Symbol {Element.symbol} \n Name {Element.name} \n Atomic mass {Element.mass} \n Density {Element.density}\n Isotpes ")
❤1
# Print Pascal's triangle like pattern
n = int(input("Enter a number: "))
print("\n".join([" "*(n-i) + "".join([str(abs(j)) for j in range(-i, i+1)]) for i in range(n+1)]))
"""
0
101 Pattern
21012
"""👍1
# fetch details of any ip address
# Example ip: 192.1.2.1
# Example ip: 192.1.2.1
import urllib.request
import json
ip = input("Please enter IP address: ")
url = f"http://ip-api.com/json/{ip}"
req = urllib.request.urlopen(url)
res_body = req.read()
res = json.loads(res_body.decode("utf-8"))
print(f"""
Status : {res["status"]}
Country : {res['country']}
Countrycode : {res["countryCode"]}
Region : {res["region"]}
City : {res['city']}
Zip Code : {res["zip"]}
latitude : {res['lat']}
longitude : {res['lon']}
timezone : {res["timezone"]}
ISP : {res["isp"]} """)
❤3👍1
string = "I am a python developer"
X=string.split()
se = (X[::-1])
print(" ".join(se))
# Reverse string in python
❤2
import random
import pyautogui
import time
x = ["hi", "hello", "spam", "python", "how are u?", "I love you"]
while True:
pyautogui.typewrite(random.choice(x))
time.sleep(1)
pyautogui.press("enter")
# Random spam using python
# note work only in pc.
❤2
Ab aap log apna khud ka Compiler bot bana sakte hain easily 🥳🥳🔥
Apne manpasand name aur username se
Create your own
By using @CloneCompiler_bot
See full details: Click Here
Apne manpasand name aur username se
Create your own
By using @CloneCompiler_bot
See full details: Click Here
Extract App details using python !
#python
#python
import requests
from bs4 import BeautifulSoup
i=input("enter app name")
page = requests.get(f"https://play.google.com/store/search?q={i}&c=apps")
soup = BeautifulSoup(page.content, "html.parser")
Details = soup.find("div", "omXQ6c").text.strip()
Ratings = soup.find("div", "TT9eCd").text.strip()
Reviews = soup.find("div", "g1rdde").text.strip()
print(f"Details: {Details}\nRatings: {Ratings}\nReviews: {Reviews}")
Img = soup.find("div", "Jeh37")
images = Img.find_all("img", {"itemprop": "image"})
print(images[0]['src'])
❤1
sᴇᴀʀᴄʜ ɢɪᴛʜᴜʙ ʀᴇᴘᴏsɪᴛᴏʀʏ ᴜsɪɴɢ ᴘʏᴛʜᴏɴ.
----------------------------------------
--------------------------
----------------------------------------
from github import Github
token="Enter Github Token Here"
g = Github(token)
X=g.search_repositories(input("Enter Repo Name to Search from Github "))
y=X[0]
print(f"""Full Name : {y.full_name}
Size :{round(y.size/1024,2)} mb
Created at {y.created_at}
Visibility: {y.visibility}
Language: {y.language}
Description : {y.description}
Topics: {" ".join(y.topics)}
Total forks :{y.forks}
Total Stars :{y.stargazers_count}
Source Link: {y.html_url}
Last Update: {y.updated_at}
By @Mr_Sukkun """)
--------------------------
❤1
# 1 to 100 numbers
print(list(range(1, 101)))
#Table using python of any number
# Join : @python_codes_pro
num = int(input("Enter any number: "))
for i in range(1, 11):
print(f"{num} * {i} = {num * i}")# Join : @python_codes_pro
👍1