Python Beginners Tutorial | Classes Functions Objects | Basic Programming 4

preview_player
Показать описание
#PythonBasics #PythonForBeginners #PythonSelenium

________ ONLINE COURSES TO LEARN ________

------------ UI TESTING ------------

------------ API TESTING ------------

------------ MOBILE TESTING ------------

------------ CI | CD | DEVOPS ------------

------------ VERSION CONTROL SYSTEM ------------

------------ PERFORMANCE TESTING ------------

------------ JAVA ------------

------------ MAVEN ------------

------------ OTHERS ------------

------------ Follow ------------
Рекомендации по теме
Комментарии
Автор

Good morning Raghav Sir,

I like the way you teach everything in a very simple manner . You are doing wonderful job . After watching your videos...things that seems to be difficult...notion about that completely changes.

Sir, Please make series on JIRA Integration( pass / fail status that is being updated in JIRA after running the automation tests) with the selenium Java project....will be waiting on the tutorial mentioned above.



Thanks Manpreet.

ManpreetSingh-xtub
Автор

Hi Raghav, i wrote like this:
class Abc:
name="Tapas"
a=5;
b=1.5;

def __int__(self, name1, age):
self.name=name1;
self.age=age;


def addition(self, a, b, sum):
print(sum+" =", a+b)

# init method that is __init__
#
# print(Abc().name)
# print(Abc.a)
# z=Abc().b
# print(z)
# p=Abc();
#p.addition(2, 4, "Value")
q=Abc("Nirod", 30)
print(q.name1)
print(q.age)


but i am getting below:
File "/Users/tapaskumarkhandai/PycharmProjects/HelloPython/ClassDemo.py", line 21, in <module>
q=Abc("Nirod", 30)
TypeError: Abc() takes no arguments

tapaskhandai
Автор

Please explain Self is it a variable or argument?

payalsethi
Автор

Hi Raghav, I am working on ETL, trying to get into AWS career, I am certified in AWS associate exam, I have learnt a lot from your Docker Jenkins Git & Tomcat videos, I need to learn Python which can be used for AWS cloudformation purpose and to work on any other AWS services, could you suggest me where i can get that information that what to learn in Python, does your Python beginners tutorial is enough to work with AWS environment, could you provide your valuable suggetion

anupkumar-jqrw
Автор

Hi Raghav, In my case when i am deleting x.name at the end of scripts .Its showing error

naziasadiq