List functions in Python
Telegram.me/Python_Codes_Pro/249
Telegram.me/Python_Codes_Pro/249
Python Codes Basic to Advance pinned «List functions in Python Telegram.me/Python_Codes_Pro/249»
# भगवत गीता - Bhagwat Geeta summary
import urllib.request
import json
chapter = input("Enter chapter number: ")
url = "https://bhagavad-gita3.p.rapidapi.com/v2/chapters/" + chapter + "/"
headers = {
"X-RapidAPI-Key": "00172e5054mshf7fe92ad8b4a5aap1ffa03jsnff24b9e4d834",
"X-RapidAPI-Host": "bhagavad-gita3.p.rapidapi.com"
}
req = urllib.request.Request(url, headers=headers)
with urllib.request.urlopen(req) as response:
data = response.read().decode('utf-8')
out = json.loads(data)
print(f"Chapter name: {out['name']}")
print(f"Summary in Hindi: {out['chapter_summary_hindi']}")
print(f"Summary in English: {out['chapter_summary']}")
😁1
Current datetime using python of India.
Are you added coding folder? 👇
https://t.me/addlist/2UhsQW_cGzkxMzg1
Are you added coding folder? 👇
https://t.me/addlist/2UhsQW_cGzkxMzg1
❤3
import urllib.request
import json
input=input("enter text to generate hastag : ")
url=f"https://mukesh-api.vercel.app/hastag/{input}"
req = urllib.request.Request(url)
with urllib.request.urlopen(req) as response:
data = response.read().decode('utf-8')
out = json.loads(data)
print(out)
❤1
Practice js 👇👇
Index:
Loops: https://t.me/nodejs_codes_pro/120
Lists ( Array ): https://t.me/nodejs_codes_pro/123
Strings: https://t.me/nodejs_codes_pro/148
Objects: https://t.me/nodejs_codes_pro/172
Numbers: https://t.me/nodejs_codes_pro/202
Index:
Loops: https://t.me/nodejs_codes_pro/120
Lists ( Array ): https://t.me/nodejs_codes_pro/123
Strings: https://t.me/nodejs_codes_pro/148
Objects: https://t.me/nodejs_codes_pro/172
Numbers: https://t.me/nodejs_codes_pro/202
👏2
Now it's discussion group is public you can join it
https://t.me/python_group_pro
https://t.me/python_group_pro
Select your group/channel/service
t.me/Sid_info/69
t.me/Sid_info/69
import urllib.request
import json
url=f"https://mukesh-api.vercel.app/mahadev"
req = urllib.request.Request(url)
with urllib.request.urlopen(req) as response:
data = response.read().decode('utf-8')
out = json.loads(data)
print(out["result"])
Are you added coding folder? 👇
https://t.me/addlist/2UhsQW_cGzkxMzg1
❤1
import pyshorteners
link =input("enter the url link")
shortener = pyshorteners.Shortener()
try:
tiny_link = shortener.tinyurl.short(link)
print(" shortend url Link :- ", tiny_link)
except:
print("error while converting shorts link")
Are you added coding folder? 👇
https://t.me/addlist/2UhsQW_cGzkxMzg1
❤2🔥1
#Read file using python# Read file using python
X=open("replit.nix","r")
print(X.read())
❤1
aap log ko python kitna level tak aata hai? please leave a comment us basis of idhar code mai upload krta ....
Who is at begging level of coding
I suggest to watch this c language playlist
Start coding ( 2 hours full ) 5 to 10 minutes videos only
https://www.youtube.com/playlist?list=PLjEYzWkdEvxv5Byb-QnlQrjsuDuhpXX1G
I suggest to watch this c language playlist
C language is starting language of any programmer for developing coding understanding only in 2 hours
Start coding ( 2 hours full ) 5 to 10 minutes videos only
https://www.youtube.com/playlist?list=PLjEYzWkdEvxv5Byb-QnlQrjsuDuhpXX1G
Python Codes Basic to Advance pinned «Who is at begging level of coding I suggest to watch this c language playlist C language is starting language of any programmer for developing coding understanding only in 2 hours Start coding ( 2 hours full ) 5 to 10 minutes videos only https://www…»