Telegram bot me kis kis tarah ke events updates aate hain full info video no 5
https://youtu.be/0Oa-CdlCT9s
Playlist: Click Here
https://youtu.be/0Oa-CdlCT9s
Playlist: Click Here
YouTube
Telegram bot updates || Telegram bot events || Telegram node js bot development by Telegraf #5
In this video, I exaplained You about which events occurs when we send message in telegram. I described many telegram events/updates in this video.
Keys:
Telegram events kya hote hain,Telegram me updates kya hote hain,Telegram bot api me updates kaise dikhte…
Keys:
Telegram events kya hote hain,Telegram me updates kya hote hain,Telegram bot api me updates kaise dikhte…
Government ne google ki dadagiri ko khatm karne ke liye apna khud ka app store banaya hai 🔥😍
Playstore pe jo apps hain unhe 30% Playstore ko apni kamayi ka hissa dena padta hai
https://apps.mgov.gov.in/details?appid=270
Aap sabhi ye government playstore ko download kare Aur logo ko bhi share Kare
Government ne to apna Kam Kar diya ab hamari Bari.
Playstore pe jo apps hain unhe 30% Playstore ko apni kamayi ka hissa dena padta hai
https://apps.mgov.gov.in/details?appid=270
Aap sabhi ye government playstore ko download kare Aur logo ko bhi share Kare
Government ne to apna Kam Kar diya ab hamari Bari.
👏1
Forwarded from Cᴏᴅᴇs Sɴɪᴘᴘᴇᴛs (</> ᴍᴜᴋᴇsʜ </>,)
To concatenate two strings to a third what statements are applicable?
Anonymous Quiz
18%
s3 = s1 . s2
42%
s3 = s1.add(s2)
23%
s3 = s1.__add__(s2)
17%
s3 = s1 * s2
Forwarded from Cᴏᴅᴇs Sɴɪᴘᴘᴇᴛs (</> ᴍᴜᴋᴇsʜ </>,)
tuples=(1,2,4,5)
X,*y=tuples
print (X,y)
X,*y=tuples
print (X,y)
Anonymous Quiz
53%
ValueError: too many values to unpack (expected 2)
21%
1,(2,4,5)
18%
1 [2, 4, 5]
8%
None
Forwarded from Cᴏᴅᴇs Sɴɪᴘᴘᴇᴛs (</> ᴍᴜᴋᴇsʜ </>,)
tuples=(1,2,4,5)
X,y=tuples
print (X,y)
X,y=tuples
print (X,y)
Anonymous Quiz
47%
ValueError: too many values to unpack (expected 2)
41%
1 [2, 4, 5]
11%
None
What ia the output of the above python code??????
Anonymous Quiz
19%
, world
28%
world
36%
hello, world!
16%
Error
❤1
Create any compiler and run on your own compiler any code
https://youtu.be/4EE-D341z6c
https://youtu.be/4EE-D341z6c
YouTube
Create any Compiler with realtime inputs || iocompiler library for Compiler bot
Create Node js Compiler with realtime inputs || iocompiler library for Compiler bot
Overview:
In this video, I exaplained You about how to create Compiler bot easily by iocompiler library then you can run js, python, c/c++, go rust codes, sh and powershell…
Overview:
In this video, I exaplained You about how to create Compiler bot easily by iocompiler library then you can run js, python, c/c++, go rust codes, sh and powershell…
👍3❤1
1. भारतीय संविधान को लिखने का कार्य किसने किया था?
- भारतीय संविधान को प्रेम बिहारी नारायण रायज़ादा ने अंग्रेजी में और वसंत कृष्ण वैद्य ने हिंदी में हाथ से लिखा था।
2. संविधान सभा का अध्यक्ष कौन था?
- .....
More details join: https://t.me/SidsAnalysis/38
Join for daily intrusting knowledge
- भारतीय संविधान को प्रेम बिहारी नारायण रायज़ादा ने अंग्रेजी में और वसंत कृष्ण वैद्य ने हिंदी में हाथ से लिखा था।
2. संविधान सभा का अध्यक्ष कौन था?
- .....
More details join: https://t.me/SidsAnalysis/38
Join for daily intrusting knowledge
👍1👎1
Become Termux Expert in Hindi Series Video No.: 7 | Change Termux Permission
https://youtu.be/53b40lkce3s
https://youtu.be/53b40lkce3s
YouTube
Become Termux Expert in Hindi Series #7 | Change termux permissions | Termux storage permission
In this video, I exaplained You about how to change permissions of termux. How to change storage, video, photos permissions and also notifications permission.
Playlist:
https://youtube.com/playlist?list=PLjEYzWkdEvxsirWewr-tsGoVLrY7ABa8f&si=c8ugTtthZ67ud_zX…
Playlist:
https://youtube.com/playlist?list=PLjEYzWkdEvxsirWewr-tsGoVLrY7ABa8f&si=c8ugTtthZ67ud_zX…
👍4
आप सभी को स्वतंत्रता दिवस की हार्दिक बधाई 🇮🇳🇮🇳
👍3❤1
Forwarded from BCA MCA Btech CS IT Channel (Siddharth Sharma)
Is There any Way to run Any language code other than javascript in frontend (browser) ?
Anonymous Quiz
81%
Yes
19%
No
👍1
In these days rust is getting much popular
1) Because of it's speed of execution.
2) It's full controll on system memory
3) it's ownership model
4) And integration to other languages
So why wait let's join our rust channel
https://t.me/Rust_Codes_Pro
1) Because of it's speed of execution.
2) It's full controll on system memory
3) it's ownership model
4) And integration to other languages
So why wait let's join our rust channel
https://t.me/Rust_Codes_Pro
Telegram
Rust Codes Basic to Advanced
Rust Codes Basic to Advanced
To check whether string s1 contains another string s2, use ________
Anonymous Quiz
18%
s1.__contains__(s2)
36%
s2 in s1
38%
s1.contains(s2)
8%
si.in(s2)
Forwarded from Cᴏᴅᴇs Sɴɪᴘᴘᴇᴛs (</> ᴍᴜᴋᴇsʜ </>,)
What will be the output of the following Python code?
print("abc DEF".capitalize())
print("abc DEF".capitalize())
Anonymous Quiz
10%
abc def
66%
ABC DEF
13%
Abc def
11%
Abc Def
👍1
Which year did Python win the "Most Lovely Coding Language" award for the first time?
Anonymous Quiz
54%
2000
22%
1991
12%
1999
12%
1997
👍1
Forwarded from Cᴏᴅᴇs Sɴɪᴘᴘᴇᴛs (</> ᴍᴜᴋᴇsʜ </>,)
What will be the output of the following Python code?
print("xyyzxyzxzxyy".count('yy', 1))
print("xyyzxyzxzxyy".count('yy', 1))
Anonymous Quiz
43%
2
17%
0
31%
1
10%
none
way to create array and perform operation using numpy.
code :
Output:-
pip install numpy
code :
import numpy as n
# creating array
d=n.array([1,2,3])
d2=n.array([4,5,6])
print(d) #it doesnt seperated with comma
print(d2) #it doesnt seperated with comma
# performing operation
print(d+d2) #it adds the corresponding elements of the arrays
print(d2-d) #it subtracts the corresponding elements of the arrays
print(d*d2) #it multiplies the corresponding elements of the arrays
#similary you can do operation with single element
d3=n.array([10])
print(d*d3)
print(d+d3)
print(d-d3)
Output:-
[1 2 3]
[4 5 6]
[5 7 9]
[3 3 3]
[ 4 10 18]
[10 20 30]
[11 12 13]
[-9 -8 -7]
👍2❤1