Find system name , version processor using python.
Jᴏɪɴ ᴜs :- @Python_Codes_Pro
Support group :- @python_group_pro
import platform
system_name = platform.system()
system_version = platform.version()
architecture = platform.architecture()[0]
processor = platform.processor()
print("OS:", system_name)
print("OS Version:", system_version)
print("32 or 64:", architecture)
print("Processor :", processor)
Jᴏɪɴ ᴜs :- @Python_Codes_Pro
Support group :- @python_group_pro
👍1
Forwarded from PYTHON PROGRAMMING (</> ᴍᴜᴋᴇsʜ </>)
❔ Interview question
How do any() and all() work?
Answer: any() - takes a sequence and returns true if any element in the sequence is true.
all() - Returns true only if all elements in the sequence are true.
➡️ Python Developer
How do any() and all() work?
Answer: any() - takes a sequence and returns true if any element in the sequence is true.
all() - Returns true only if all elements in the sequence are true.
➡️ Python Developer
Become coding expert by Codes channels and groups with Yt videos also
https://t.me/addlist/2UhsQW_cGzkxMzg1
https://t.me/addlist/2UhsQW_cGzkxMzg1
Telegram
Coding
सिद्धार्थ शर्मा invites you to add the folder “Coding”, which includes 26 chats.
👍1🥰1
Forwarded from Cᴏᴅᴇs Sɴɪᴘᴘᴇᴛs (</> ᴍᴜᴋᴇsʜ </>)
What is the output of following Python Code?
#python
#python
❤1👍1
Forwarded from Cᴏᴅᴇs Sɴɪᴘᴘᴇᴛs (ᴀɴᴋɪᴛ </>)
👍2❤1
Forwarded from Cᴏᴅᴇs Sɴɪᴘᴘᴇᴛs (</>)
print(bool('0'))
print(bool(0))
print(bool(0))
Anonymous Quiz
28%
False , True
36%
True, False
25%
False, False
11%
True, True
❤4👍1
print(bool(0))
print(bool(''))
print(bool(''))
Anonymous Quiz
33%
True , False
28%
False , True
11%
True , True
28%
False , False
❤4
Forwarded from PYTHON PROGRAMMING (</> ᴍᴜᴋᴇsʜ </>)
❤2👍1
Forwarded from Cᴏᴅᴇs Sɴɪᴘᴘᴇᴛs (</> ᴍᴜᴋᴇsʜ </>)
❤2
Forwarded from Cᴏᴅᴇs Sɴɪᴘᴘᴇᴛs (</> ᴍᴜᴋᴇsʜ </>)
Learn Telegram bot development using Nodejs telegraf library: https://www.youtube.com/playlist?list=PLjEYzWkdEvxvJ8lZacERw_NiUKbB7l_dx
1 more video added
Subscribe to get updates
1 more video added
Subscribe to get updates
How telegram usase bot api server || telegram bot communication | bot de...
https://youtube.com/watch?v=4rQag9NBtEQ&si=fClSDb4bENQ_wUgE
Full Playlist: Click Here
https://youtube.com/watch?v=4rQag9NBtEQ&si=fClSDb4bENQ_wUgE
Full Playlist: Click Here
YouTube
How telegram usase bot api server || telegram bot communication | bot development series #4
In this video, I exaplained You basic flow of data/message in telegram. I exaplained about how telegram send or get any message from those clients like mobile apps or bot api servers.
Keys:
What is telegram,How telegram bot api works,How telegram works…
Keys:
What is telegram,How telegram bot api works,How telegram works…
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