Forwarded from Python Projects & Resources
๐ฐ ๐๐ฟ๐ฒ๐ฒ ๐ ๐ถ๐ฐ๐ฟ๐ผ๐๐ผ๐ณ๐ ๐๐ฒ๐ป๐ฒ๐ฟ๐ฎ๐๐ถ๐๐ฒ ๐๐ ๐ง๐ฟ๐ฎ๐ถ๐ป๐ถ๐ป๐ด ๐ ๐ผ๐ฑ๐๐น๐ฒ๐ ๐๐ผ ๐๐ผ๐ผ๐๐ ๐ฌ๐ผ๐๐ฟ ๐ฆ๐ธ๐ถ๐น๐น๐๐
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
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
Join us for more -
https://t.iss.one/pythonfreebootcamp
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