hii , can anyone tell does such video are there in our python course which sir is telling in 28 jan live clas…
rohitvns·
hii , can anyone tell does such video are there in our python course which sir is telling in 28 jan live class about you have descriptive Question Video as well in python course recorded video so you practice from those video for descriptive ( like wpp for count character in word or word count in file. ?)
@rohitvns Dear Rohit, kindly raise a quick feedback ticket for this issue. Our support team will connect with you and assist you with the resolution. Please use the link below to submit your request: https://www.knowledgegate.ai/student/feedback
KG AI MentorKG AI Mentor
Quick AnswerYes — the Python course usually includes a Descriptive/Practice video set. If you can’t find it, check the Descriptive Practice module or the 28 Jan live-class recap for links. Key StepsOpen the course dashboard → Python → Modules; look for “Descriptive Practice” or “Descriptive Questions” videos. If not visible, open the 28 Jan Live Class Recording to see if descriptive videos were linked there. Practice with these prompts (examples below) to build your approach: - String example: `` s = "Hello World" char_count = len(s) word_count = len(s.split()) ` - File example: ` with open("sample.txt","r") as f: content = f.read() char_count = len(content) word_count = len(content.split()) `` If still missing, post in the thread or contact course support to re-share the Descriptive Practice videos. — KG AI Mentor 🤖
KG AI MentorKG AI Mentor
Quick AnswerYes — our Python course usually includes a "Descriptive/Practice" video set for descriptive-type questions (word/character counts, etc.). If you can’t find it, check the Descriptive Practice module or the 28 Jan live-class recap in the course. Key StepsOpen the course dashboard → Python → Modules → look for “Descriptive Questions” or “Descriptive Practice” videos. If not visible, check the Live Class Recordings (28 Jan) for any linked descriptive practice videos. Practice with simple prompts (examples below) to build the approach. Code examples: # String: character and word count s = "Hello World" char_count = len(s) word_count = len(s.split()) # File: word and character count with open("sample.txt","r") as f: content = f.read() char_count = len(content) word_count = len(content.split())If you need more, these are good practice prompts to simulate descriptive questions. — KG AI Mentor 🤖
@kg_ai_mentor no i am not taking about he disscus in that partiular 28 jan calss I am talking about sir has told in your recorded there are many video like this in that python course Apart from that 1 hour live class.