HELLO! I am a beginner scripter with almost no experience, and this really helps a lot. I asked my dad (who is an engineer) to teach me this, but he was awful at teaching so I came to this video. No regrets at all.
My job requires programming in Classic ASP. I am still learning Classic ASP, and this video series about VBScript will help me tremendously. Thank you for taking the time to produce these VBScript videos. I look forward to viewing more.
when im searching for online tutorials on programming i am always worried, because if it's too boring i lose the will to continue. This happened to me when trying to learn Ruby. I am soooo happy i found this video series it is amazing, THANK YOU FOR AMAZING AND AWESOME TUTORIALS!! :)
Thank you soooooo much. Excellent tutorial, simple and elaborate explanation for each step which are extremely necessary. Highly recommended video for all the beginners. Looking forward for next lesson, hope I find it
Hey Antonio. I know this is a very weird question, so I'm sorry in advance. How old are you? Or what kind of school and grade year are you in? I am curious because I'm a 17 year old currently studying programming. I wanna have an idea of when i get into this kinda stuff!
I absolutely love this first tutorial, except I actually edited a few things to improve upon this simple code... Option Explicit Dim firstNumber firstNumber = InputBox("Please enter a number to add:","First Number") if firstNumber = Empty Then MsgBox "Invalid Input" WScript.Quit End if firstNumber = Cint(firstNumber) Dim secondNumber secondNumber = InputBox("Please eneter a number to add:" & vbCrLf & "To the previous input...","Second Number",0) Dim sum Sum = firstNumber + secondNumber MsgBox "Your Sum is " & sum I added an If-Then statement so if you input an empty character for "First Number" you received an invalid input MsgBox instead of just a runtime error. Thanks!
Nice Explanation Sir, the way u have explained the things here are soo easy to understand. I've watched ur vedios for the first time today but nw i'll be a regular follower of ur videos plz continue ur grt work..I really appreciate ur Teachings ! Best Wishes !
hey how do i open my command prompt to my C: \VBScript >sum.vbs instead of C: \Users\Cheat> ?? i do not know how to navigate to a specific folder please help!
Hey there. You could use the cd command like so: C:\Users\Cheat> cd c:\VBScript There are other ways like copy the path and paste it in the Command prompt after cd. Thank you for your question.
Thank you, making it simple is the focus of these video tutorials. There are 8 VBScript tutorials in my playlist, VBScript at ua-cam.com/play/PLc3SzDYhhiGXH8hEHtayRPdwAsddelkh6.html It is really fun for me to practice VBScript examples and use scripts to automate tasks. Hope that you enjoy working and using VBScript as much.
@Robbin Scott - You are welcome! You can see more scripts in the VBScript playlist at ua-cam.com/play/PLc3SzDYhhiGXH8hEHtayRPdwAsddelkh6.html Email me if you need training or scripts for your project.
Hi Rashmi, thanks again. The complete set of my VBScript tutorials (with many examples) is available at the link, ua-cam.com/video/Wd344ElH_Yg/v-deo.html
Many thanks for your feedback. & vbCrLf takes the printing to the next line. Therefore, the text "Please enter the second number to add" appears on one line. And the text "to the sum" appears on the second line. In my example, vbCrLf splits the InputBox prompt on two lines, increasing readability.
@Thippesh_TR Pani - If you need support, you can join my channel as a Standard Member. If you need priority support and 1-1 sessions, you can join as Premium Member. The link to join as Member is ua-cam.com/channels/8w8_H_1uDfi2ftQx7a64uQ.htmljoin
I have one question to ask. we are using firstNumber and secondNumber on line 5 and 8 respectively but at line no.11 we are adding the Sum= FirstNumber + SecondNumber. So, does that mean VBscript do not care for small or capital letters??
+Aakash Kumar Yes, VBScript is case insensitive for variable names and commands. Still, we should write the variable names in the same way in our scripts for better readability.
For user input, this tutorial shows InputBox. You cannot directly create HTML elements like radio buttons in VBScript. Another way to provide user input is via Excel. I have shown working with HTML and Excel in my VBScript tutorial at ua-cam.com/video/cIFONuSKH1Q/v-deo.html
Can you pls help me....I have saved the file as sum.vbs.and when iam trying to execute by double clicking on that...it is launching the Internet Explorer browser....Iam not able to view the output...wht could be the solution for this...?
int tester Hi there. It seems that the .vbs file extension has the wrong association in your computer. In order to run the sum.vbs, request you to do this. Right-click on sum.vbs > go to Open with > click Microsoft Windows Based Script Host. Other ways of running your VBScript scripts are shown in my other videos at ua-cam.com/play/PLc3SzDYhhiGXH8hEHtayRPdwAsddelkh6.html
Hello, I would like to login with Putty in multiple devices (cisco devices) and run some command. I tried to google some code but did not find any good option. Problem is that sendkey does not work with Putty tool my task is as follow. 1. login to device using putty. 2.enter username 3.enter password 3.run my commands
No idea. But VBScript can be used for automation type tasks on Windows computers ua-cam.com/video/cIFONuSKH1Q/v-deo.html and run SQL queries on databases ua-cam.com/video/knqPG5KDn7E/v-deo.html
+Karthick Raj I have explained how to create files using VBScript. The examples are of HTML file and Excel file. Similarly, we can generate an XML file. The link to this VBScript tutorial 6 is ua-cam.com/video/cIFONuSKH1Q/v-deo.html
@Julius Ryan - MsgBox function has three arguments, which are the message, the icon and the title. I have demonstrated the MsgBox format in my VBScript tutorial 4 at ua-cam.com/video/vP2ScuW7H5U/v-deo.html Also, given the MsgBox example in my blog post at inderpsingh.blogspot.com/2020/03/VBScriptTutorial4.html
Yes, VBScript is still being used. From time to time, I get questions about VBScript utilities and the VBScript coding that is a feature of many products.
ebby nader You can double-click on a .vbs file in Windows explorer to execute it. In Notepad++, click Run > Run > then type the filepath of your vbs file > then click the Run button.
good explanation, but next time watch out for capital / non capital letters. I thought the I was actually a small L in the beginning. Had me scratch my head for a while.
Wow, that is something that is not easily noticeable. I assume that your comment is regarding the script from 12:57 in this video. Yes, I called the same function as CInt and Cint on lines 5 and 8. VBScript didn't mind because it doesn't care for the case. Yes, I have noted your point. Thank you.
The Expected Statement error may indicate that you are missing a statement or mis-spelt a keyword . You can look at the Line number and Char number given in the Error message box for a hint. If you are still unable to debug your script, you can paste it here so I can look at it. Thank you.
Option Explicit Dim firstNumber firstNumber = InputBox("Gib die erste Zahl ein:","Erste Nummer") firstNumber = Cint(firstNumber) Dim secondNumber secondNumber = Cint(InputBox("Gib die zweite Zahl ein"& vbCrLf &"die zur Summe addiert werden soll","Zweite Zahl",0)) Dim sum sum = FirstNumber + SecondNumber Dim Stimme set Stimme=Createobject("sapi.spvoice") Stimme.speak (firstNumber & "+" & secondNumber & "=" & sum) MsgBox "Die Summe ist " & sum Speaking Calculator :D
Pringles 00765 This is interesting and useful for audio notifications. Thank you for sharing. There is more that we can do with the Microsoft Speech API.
This error comes if there is a syntax error in your VBScript. The error also shows the line number with the error. You need to fix the error. One way to do this is to ensure that your script is exactly (character by character) the same as shown in my video.
Hi there, I'm a new subscriber and I came across your video and very informative.I'm not good in VB scripting but willing to learn more.I've a created a VBscript to automated Windows event logs collection but some reason when I test the script no errors but the Task scheduler is showing running but nothing is happening.This is the path I tried first :Program/Script C:\Windows\System32\wscript.exe Add arguments (optional): "E:\IT_Security\tools\scripts\Eventlog\EventLogBU_Application_Silent-Rev2016-1.vbs"And I also tried this path:Program/Script:E:\IT_Security\tools\scripts\Eventlog\EventLogBU_Application_Silent-Rev2016-1.vbs" All the settings are enabled and properly configured but no audit logs collected.What am I doing wrong ?????? Help !!
Hi there, many thanks for your subscription. I have shown how to execute a VBScript program in this video tutorial. The simplest way is to open File Explorer and double-click the .vbs file to run it. When the script is running, you should be able to see it listed in the Task Manager > Processes tab > Apps. It should be listed as Microsoft Windows Based Script Host. Also, note the following points: 1) If you use Task scheduler, the script will run only at the given date and time. So, you could check it then. 2) The arguments are not optional. Wscript needs to know the .vbs file that you want to run. Thanks, Inder P Singh
Sure. The InStr() string function finds one string within another string. I showed a working example of InStr VBScript function (after first 8 minutes and 28 seconds) in my VBScript tutorial 3 on If statement at the link, ua-cam.com/video/NiIqELIZGNg/v-deo.html
Sure. The subroutine is called the sub procedure in VBScript. I have shown how to call both sub procedures and function procedures in the VBScript tutorial at ua-cam.com/video/Wd344ElH_Yg/v-deo.html You can view that tutorial from 3: min. and 13 sec. onward. Thanks!
@@QA1 Thanks! I've been programming in C and Java for so long that I forgot how it's done in Basic, which is almost reminiscent of Fortran. I forgot the "Function" keyword.
Sir pls tell me how to run vbscript with html code pls tell me Output ia not showing in IE pls help One clear video on how to run basic addition program with html code
Do you want to run VBScript in the browser? Why don't you use a modern browser with Javascript? But my 6th VBScript tutorial has HTML VBScript example from 3:36. The link is ua-cam.com/video/cIFONuSKH1Q/v-deo.html
HELLO! I am a beginner scripter with almost no experience, and this really helps a lot. I asked my dad (who is an engineer) to teach me this, but he was awful at teaching so I came to this video. No regrets at all.
@MINI LAMMA - I am glad to have your comment! What is your channel about?
@@QA1 I was planning to do animations and shorts on my channel, but I don’t upload anymore. And I am glad to check out your channel as well
@MINI LAMMA - It is nice of you to check out my channel. Best wishes, Inder P Singh
My job requires programming in Classic ASP. I am still learning Classic ASP, and this video series about VBScript will help me tremendously. Thank you for taking the time to produce these VBScript videos. I look forward to viewing more.
Glad to help, Michael. Many thanks for your comment.
This is the best VB Scripting tutorial for beginners. Thank you!
when im searching for online tutorials on programming i am always worried, because if it's too boring i lose the will to continue. This happened to me when trying to learn Ruby. I am soooo happy i found this video series it is amazing, THANK YOU FOR AMAZING AND AWESOME TUTORIALS!! :)
Very glad to know that you liked this VBScript video series. Many thanks.
thank u sir, for explaining so well the option explicit concept.i have learnt something new.
very good explanation. Easily understandable thank you so much
Thank you soooooo much. Excellent tutorial, simple and elaborate explanation for each step which are extremely necessary. Highly recommended video for all the beginners. Looking forward for next lesson, hope I find it
Many thanks for your kind words. The next lessons are at the link, ua-cam.com/video/Wd344ElH_Yg/v-deo.html
Very clear and smooth explanation. Thanks Sir
By far the best Video series to learn VBScript.
Amar Quality Many thanks for your kind comment.
awesome tutorials....i used to watch all ur tutorials they are very useful..very clean explanation...thank you
sushma suresh Thank you, Sushma. Your support is important for this channel.
Clear and precise explanation. Thank you.
Nice basic VB script explanation.. Thanks!!
Many thanks for your comment, Varsha :)
Awesome Sir!!!! i am amazed by watching only part 1...no one explained me how we define a variable which u did simply!!! thanks
Sumit - very glad that you liked the content. It makes uploading this video worthwhile. Thank you for your comment.
Your Explanation is very very clear
thank you very much this video helped me understand the topics for my exam tomorrow !!! thx a lot
Hey Antonio. I know this is a very weird question, so I'm sorry in advance. How old are you? Or what kind of school and grade year are you in? I am curious because I'm a 17 year old currently studying programming. I wanna have an idea of when i get into this kinda stuff!
I absolutely love this first tutorial, except I actually edited a few things to improve upon this simple code...
Option Explicit
Dim firstNumber
firstNumber = InputBox("Please enter a number to add:","First Number")
if firstNumber = Empty Then
MsgBox "Invalid Input"
WScript.Quit
End if
firstNumber = Cint(firstNumber)
Dim secondNumber
secondNumber = InputBox("Please eneter a number to add:" & vbCrLf & "To the previous input...","Second Number",0)
Dim sum
Sum = firstNumber + secondNumber
MsgBox "Your Sum is " & sum
I added an If-Then statement so if you input an empty character for "First Number" you received an invalid input MsgBox instead of just a runtime error.
Thanks!
This is very nicely explained. You are a very good teacher sir. Very helpful videos. Thank You!
Excellent video with great inputs! Thanks
ur teaching is simple and best
sir your explanation is good and clear
Glad that you like these VBScript videos. Thank you for your comment.
Nice Explanation Sir, the way u have explained the things here are soo easy to understand. I've watched ur vedios for the first time today but nw i'll be a regular follower of ur videos plz continue ur grt work..I really appreciate ur Teachings ! Best Wishes !
Thank you always.
Very good video and easy to understand. I think I'm starting now to understand better why to use Dim
This tutorial has been very helpful. Thanks!
Cecil4029 Glad to help. Many thanks for your comment.
hey how do i open my command prompt to my C: \VBScript >sum.vbs instead of C: \Users\Cheat> ?? i do not know how to navigate to a specific folder please help!
also is there anyway i could contact you for help?
Hey there. You could use the cd command like so:
C:\Users\Cheat> cd c:\VBScript
There are other ways like copy the path and paste it in the Command prompt after cd. Thank you for your question.
Yes, you can contact me at (Channel > About tab > View Email Address)
emille is daddy your content is so cringe
Great video! I've been struggling through a scripting book trying to pick this stuff up, but you made this easy to follow along with. Thanks!
Thank you, making it simple is the focus of these video tutorials. There are 8 VBScript tutorials in my playlist, VBScript at ua-cam.com/play/PLc3SzDYhhiGXH8hEHtayRPdwAsddelkh6.html
It is really fun for me to practice VBScript examples and use scripts to automate tasks. Hope that you enjoy working and using VBScript as much.
Awesome Explanation...Thank you sir
Very good tutorial. Your explanation is good and clear.
Thank you, Cosma.
Thank you for these videos. Gotta start preparing for my software testing internship in 4 months xD
very helpful.. thanku sir
Great explanation 👍
@Олександр Терешков - Thank you and welcome to Software and Testing Training channel 😊
finally tutorial i can understand, thanks, keep on pls
inna1771 You are welcome. Please find the links to all my VBScript tutorials (2 hours in duration) at inderpsingh.blogspot.com/2014/09/VBScript.html
thank you
nice explanation thanku sir
This has helped a lot . Thank you sir !
Aishwarya Das Thank you, Aishwarya.
It would be worth doing a similar video on the twinBASIC programming language.
NICE EXPLANATION . THANKS
Chitra, thank you for your comment.
Well done sir!
Your voice is similar to MS Dhoni
It is nice to know that someone else is watching this during quarantine
very helpful
GREAT video thank!
@Robbin Scott - You are welcome! You can see more scripts in the VBScript playlist at ua-cam.com/play/PLc3SzDYhhiGXH8hEHtayRPdwAsddelkh6.html
Email me if you need training or scripts for your project.
awesome
lol=msgbox ("Very well explained. " & vbCrLf & "We need more teachers like you :-)" , 20, "Thank you")
+Atcan2013 Thank you for the beautifully-formatted message box :)
thank
you
very much
yes
thank
you
alot
software
and
testing
training
for
this
great
video
Nicely explained
Hi Rashmi, thanks again. The complete set of my VBScript tutorials (with many examples) is available at the link, ua-cam.com/video/Wd344ElH_Yg/v-deo.html
great video..
question: why you need to use & vbCrLf?
what if we don't put that in script
Many thanks for your feedback. & vbCrLf takes the printing to the next line. Therefore, the text "Please enter the second number to add" appears on one line. And the text "to the sum" appears on the second line. In my example, vbCrLf splits the InputBox prompt on two lines, increasing readability.
thank you for help :)
You're welcome to this channel.
Wonderful
This video is good but need from scratch.. Like when to use capital double coat like this..
@Thippesh_TR Pani - If you need support, you can join my channel as a Standard Member. If you need priority support and 1-1 sessions, you can join as Premium Member. The link to join as Member is ua-cam.com/channels/8w8_H_1uDfi2ftQx7a64uQ.htmljoin
I have one question to ask. we are using firstNumber and secondNumber on line 5 and 8 respectively but at line no.11 we are
adding the Sum= FirstNumber + SecondNumber. So, does that mean VBscript do not care for small or capital letters??
+Aakash Kumar Yes, VBScript is case insensitive for variable names and commands. Still, we should write the variable names in the same way in our scripts for better readability.
I heard from my seniors that UFT will be no longer going to used by software companies for testing. Can some one tell me your opinion on it?
is there video for userinput: radio button, drop down list, checkbox?
For user input, this tutorial shows InputBox. You cannot directly create HTML elements like radio buttons in VBScript. Another way to provide user input is via Excel. I have shown working with HTML and Excel in my VBScript tutorial at ua-cam.com/video/cIFONuSKH1Q/v-deo.html
Can you pls help me....I have saved the file as sum.vbs.and when iam trying to execute by double clicking on that...it is launching the Internet Explorer browser....Iam not able to view the output...wht could be the solution for this...?
int tester Hi there. It seems that the .vbs file extension has the wrong association in your computer. In order to run the sum.vbs, request you to do this. Right-click on sum.vbs > go to Open with > click Microsoft Windows Based Script Host. Other ways of running your VBScript scripts are shown in my other videos at ua-cam.com/play/PLc3SzDYhhiGXH8hEHtayRPdwAsddelkh6.html
Hello,
I would like to login with Putty in multiple devices (cisco devices) and run some command. I tried to google some code but did not find any good option. Problem is that sendkey does not work with Putty tool
my task is as follow.
1. login to device using putty.
2.enter username
3.enter password
3.run my commands
Hello, I have shown how to use VBScript to launch other programs in my VBScript video 6 at ua-cam.com/video/cIFONuSKH1Q/v-deo.html
Hi, can you clarify what
Hi! In ASP, the code enclosed with
nice
Are VBS script used for worms and viruses? Cuz it looks perfect for one to me
No idea. But VBScript can be used for automation type tasks on Windows computers ua-cam.com/video/cIFONuSKH1Q/v-deo.html and run SQL queries on databases ua-cam.com/video/knqPG5KDn7E/v-deo.html
@@QA1 Ok, thank for the info, I'll check out the links.
Hi,
Can you please tell me how can i generate XML file using VBscript.
I need to take the values dynamically
+Karthick Raj I have explained how to create files using VBScript. The examples are of HTML file and Excel file. Similarly, we can generate an XML file. The link to this VBScript tutorial 6 is ua-cam.com/video/cIFONuSKH1Q/v-deo.html
how do you add a label in the sum msgbox?
@Julius Ryan - MsgBox function has three arguments, which are the message, the icon and the title. I have demonstrated the MsgBox format in my VBScript tutorial 4 at ua-cam.com/video/vP2ScuW7H5U/v-deo.html
Also, given the MsgBox example in my blog post at inderpsingh.blogspot.com/2020/03/VBScriptTutorial4.html
Márisol piiñk
Is VBScript still used ? Could please answer, I heard lot of noise about VBScript depreciation
Yes, VBScript is still being used. From time to time, I get questions about VBScript utilities and the VBScript coding that is a feature of many products.
Thankuu sir
You are welcome. My remaining VBScript tutorials are available at ua-cam.com/video/Wd344ElH_Yg/v-deo.html&list=PLc3SzDYhhiGXH8hEHtayRPdwAsddelkh6
So... reserve or "dim" the variable... and the variable is the sum... so... Dim Sum?
Haha, you must like dim sums :)
can you show how to set up notepad++ to run vbs .How to execute the files.
ebby nader You can double-click on a .vbs file in Windows explorer to execute it. In Notepad++, click Run > Run > then type the filepath of your vbs file > then click the Run button.
We use VB Scripts in our CMM Programs
Are these vb script videos useful to install applications?
No, I have other VBScript scripts to install applications.
@@QA1 plz share that video link
Not video, but scripts that I have.
@@QA1 is it possible to share that scripts, plz share.
You can email me your application packaging requirement. If I have any suitable existing script, I can send you, else I'll have to write a new script.
good
Dharanesha Darani Thank you, Dharanesha.
good explanation, but next time watch out for capital / non capital letters. I thought the I was actually a small L in the beginning. Had me scratch my head for a while.
Wow, that is something that is not easily noticeable. I assume that your comment is regarding the script from 12:57 in this video. Yes, I called the same function as CInt and Cint on lines 5 and 8. VBScript didn't mind because it doesn't care for the case. Yes, I have noted your point. Thank you.
Hi, but why my script said “Expected Statement error”. Thank you for replying :)
The Expected Statement error may indicate that you are missing a statement or mis-spelt a keyword . You can look at the Line number and Char number given in the Error message box for a hint.
If you are still unable to debug your script, you can paste it here so I can look at it. Thank you.
Software and Testing Training how can the line and char number help me
Option Explicit
Dim firstNumber
firstNumber = InputBox("Gib die erste Zahl ein:","Erste Nummer")
firstNumber = Cint(firstNumber)
Dim secondNumber
secondNumber = Cint(InputBox("Gib die zweite Zahl ein"& vbCrLf &"die zur Summe addiert werden soll","Zweite Zahl",0))
Dim sum
sum = FirstNumber + SecondNumber
Dim Stimme
set Stimme=Createobject("sapi.spvoice")
Stimme.speak (firstNumber & "+" & secondNumber & "=" & sum)
MsgBox "Die Summe ist " & sum
Speaking Calculator :D
Pringles 00765 This is interesting and useful for audio notifications. Thank you for sharing. There is more that we can do with the Microsoft Speech API.
+Pringles 00765 This is so cool.Nice job!!
+Pringles 00765 This works with adition... so we can improve it for multiplication?
when i open my pc then show a notification microsoft VBScript runtime error..
how can i solve this problem . plz help....
This error comes if there is a syntax error in your VBScript. The error also shows the line number with the error. You need to fix the error. One way to do this is to ensure that your script is exactly (character by character) the same as shown in my video.
Hi there, I'm a new subscriber and I came across your video and very informative.I'm not good in VB scripting but willing to learn more.I've a created a VBscript to automated Windows event logs collection but some reason when I test the script no errors but the Task scheduler is showing running but nothing is happening.This is the path I tried first :Program/Script
C:\Windows\System32\wscript.exe
Add arguments (optional):
"E:\IT_Security\tools\scripts\Eventlog\EventLogBU_Application_Silent-Rev2016-1.vbs"And I also tried this path:Program/Script:E:\IT_Security\tools\scripts\Eventlog\EventLogBU_Application_Silent-Rev2016-1.vbs" All the settings are enabled and properly configured but no audit logs collected.What am I doing wrong ?????? Help !!
Hi there, many thanks for your subscription. I have shown how to execute a VBScript program in this video tutorial. The simplest way is to open File Explorer and double-click the .vbs file to run it. When the script is running, you should be able to see it listed in the Task Manager > Processes tab > Apps. It should be listed as Microsoft Windows Based Script Host. Also, note the following points:
1) If you use Task scheduler, the script will run only at the given date and time. So, you could check it then.
2) The arguments are not optional. Wscript needs to know the .vbs file that you want to run.
Thanks,
Inder P Singh
Sir please explain InStr() string function
Sure. The InStr() string function finds one string within another string. I showed a working example of InStr VBScript function (after first 8 minutes and 28 seconds) in my VBScript tutorial 3 on If statement at the link, ua-cam.com/video/NiIqELIZGNg/v-deo.html
Processing box should be a non-rectangular parallelogram
My flowchart is correct. The non-rectangular parallelogram is used to depict input or output.
Can someone just show me how to call a subroutine or function in VB script? I cannot get it to work!
Sure. The subroutine is called the sub procedure in VBScript. I have shown how to call both sub procedures and function procedures in the VBScript tutorial at ua-cam.com/video/Wd344ElH_Yg/v-deo.html
You can view that tutorial from 3: min. and 13 sec. onward. Thanks!
@@QA1 Thanks! I've been programming in C and Java for so long that I forgot how it's done in Basic, which is almost reminiscent of Fortran. I forgot the "Function" keyword.
@DelphiProgrammer - Okay😊 And nice to know about you!
Sir pls tell me how to run vbscript with html code pls tell me
Output ia not showing in IE pls help
One clear video on how to run basic addition program with html code
Do you want to run VBScript in the browser? Why don't you use a modern browser with Javascript? But my 6th VBScript tutorial has HTML VBScript example from 3:36. The link is ua-cam.com/video/cIFONuSKH1Q/v-deo.html
Wait... thisis just python with extra steps
Let us view the Python Tutorial for Beginners and compare. The link is ua-cam.com/video/sp0Tu6i-GnY/v-deo.html
why is everyone indian in the comment section
i dont know
Because they are Indian, they wont be Indian if they were American, Australian or Japanese!
Plzz Hindi Me share kren
Thanks for your suggestion.
hindi me chiye sir
Hindi me bataiye sir