Python Projects & Free Books
38.1K subscribers
611 photos
93 files
307 links
Python Interview Projects & Free Courses

Admin: @Coderfun
Download Telegram
๐Ÿฐ ๐—™๐—ฟ๐—ฒ๐—ฒ ๐— ๐—ถ๐—ฐ๐—ฟ๐—ผ๐˜€๐—ผ๐—ณ๐˜ ๐—š๐—ฒ๐—ป๐—ฒ๐—ฟ๐—ฎ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—”๐—œ ๐—ง๐—ฟ๐—ฎ๐—ถ๐—ป๐—ถ๐—ป๐—ด ๐— ๐—ผ๐—ฑ๐˜‚๐—น๐—ฒ๐˜€ ๐˜๐—ผ ๐—•๐—ผ๐—ผ๐˜€๐˜ ๐—ฌ๐—ผ๐˜‚๐—ฟ ๐—ฆ๐—ธ๐—ถ๐—น๐—น๐˜€๐Ÿ˜

Generative AI is no longer just a buzzwordโ€”itโ€™s a career-maker๐Ÿง‘โ€๐Ÿ’ป๐Ÿ“Œ

Recruiters are actively looking for candidates with prompt engineering skills, hands-on AI experience, and the ability to use tools like GitHub Copilot and Azure OpenAI effectively.๐Ÿ–ฅ

๐‹๐ข๐ง๐ค๐Ÿ‘‡:-

https://pdlink.in/4fKT5pL

If youโ€™re looking to stand out in interviews, land AI-powered roles, or future-proof your career, this is your chance
๐Ÿ‘1
๐Ÿ”… Voice Recorder in Python
pip install sounddevice


import sounddevice
from scipy.io.wavfile import write
#sample_rate
fs=44100
#Ask to enter the recording time
second = int(input("Enter the Recording Time in second: "))
print("Recordingโ€ฆ\n")
record_voice = sounddevice.rec(int(second * fs),samplerate=fs,channels=2)
sounddevice.wait()
write("MyRecording.wav",fs,record_voice)
print("Recording is done Please check you folder to listen recording")


Join us for more -
https://t.iss.one/pythonfreebootcamp
๐Ÿ‘2