AK Python
1.86K subscribers
39 photos
2 videos
11 files
236 links
Join here to unlock your programming ability
Download Telegram
If two fair coins are flipped and at least one of the outcomes is known to be a head, what is the probability that both outcomes are heads? (Probability question)
Anonymous Quiz
47%
1/2
14%
1/3
16%
2/3
23%
1/4
Tech news...... 🖥

Satellite television provider Dish Network has announced its plan to acquire cell carrier Republic Wireless, 
The company plans to launch 5G service in the US later this year.

Share support
#ykyg :
Did you know?

eBay was created by an Iranian-American computer programmer called Pierre Omidyar, 
he was working on designing code for an online auction website originally called Auction Web.

Share support
AK Python
https://youtu.be/Z1l59ACbC4s
Check out this video👍
Just uploaded new video 👍 ( completely for beginners )
This media is not supported in your browser
VIEW IN TELEGRAM
Many of you asking me : How to install freegames library on your machine...Here is the simple solution👍
import random
gen=random.randint(000000,100000)
username=input('Enter the username:')
print('hello',username)
print('Here is your OTP:',gen)
password=input("Enter the otp to login:")
if password==str(gen):
print('Login success')
else:
password!=str(gen)
print('login failed')
👍1
source code for OTP generator
VIDEO UPDATE: The video is about sending mails by using an voice assitant in python (25 lines) will be out tomorrow🔥
Which one of the following is NOT desired in a good Software Requirement Specifications (SRS) document? (Gate question)
Anonymous Quiz
26%
Functional Requirements
32%
Non-Functional Requirements
19%
Goals of Implementation
24%
Algorithms for Software Implementation
Email voice assistant video is out now..!
Tech news......🖥

SpaceX files Falcon 9 rocket booster for a record 9th time, delivers 3rd batch of starlink satellites in two weeks.

Share support
Good morning python programmers😌
Source code for email voice assistant
👍1
import speech_recognition as sr
import yagmail

recognizer=sr.Recognizer()
with sr.Microphone() as source:
print('Clearing background noise..')
recognizer.adjust_for_ambient_noise(source,duration=1)
print("waiting for your message...")
recordedaudio=recognizer.listen(source)
print('Done recording..!')
try:
print('Printing the message..')
text=recognizer.recognize_google(recordedaudio,language='en-US')

print('Your message:{}'.format(text))

except Exception as ex:
print(ex)

#Automate mails:

reciever=' Receiver's email id'
message=text
sender=yagmail.SMTP('Sender's email id ')
sender.send(to=reciever,subject='This is an automated mail',contents=message)
#ykyg :
Did you know?

Most internet traffic isn't from real Humans.
About 51% of internet traffic is non-human. Over 30% is from hacking programs, spammers, and phishing.

Share support