Python Anaconda Tutorial | Python Anaconda Explained | Python | Intellipaat

preview_player
Показать описание
In this Python Anaconda Tutorial video, you will learn what is Anaconda, how to install Anaconda, why use Anaconda, hands-on demo on Python Anaconda. This Python Anaconda explained video is a must-watch video for everyone who wishes to learn Python and make a career in it.

#PythonAnacondaTutorial #PythonAnacondaExplained #IntroductionToPythonWithAnaconda #PythonProjects #Python #PythonProgramming #PythonTutorial #PythonTraining #Intellipaat

Q. Why Python programming is important?
Python is a highly popular object-oriented language that is fast to learn and easy to deploy. It can run on various systems like Windows, Linux, and Mac; this makes it highly coveted for the Data Analytics domain. Python’s design and libraries provide 10 times productivity compared to C, C++, or Java. A Senior Python Developer in the United States can earn $102,000 – Indeed

Q. Why should you opt for a Python career?
If you want to fast-track your career then you should strongly consider Python. The reason for this is that it is one of the fastest-growing and widely used programming languages. There is a huge demand for Python programmers. The salaries for Python programmers are very good. There is a huge growth opportunity in this domain as well. Hence this Intellipaat Python programming session is your stepping stone to a successful career!
------------------------------
For more information:

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

sub1 int(input("Math: ")) sub2 = int(input("Physics: "))

sub3 int(input("History: "))

sub4 = int(input("English: ")) sub5 = int(input("Chemistry: "))

print()

total = sub1+sub2+sub3+sub4+sub5

print("Total Score: ", total) percentage (total/500)*100

print("Percentage- ", percentage, "%")

Sahil.mo
Автор

sub1=int(input("Enter marks of the first subject: "))
sub2=int(input("Enter marks of the second subject: "))
sub3=int(input("Enter marks of the third subject: "))
sub4=int(input("Enter marks of the fourth subject: "))
sub5=int(input("Enter marks of the fifth subject: "))

if(avg>=90):
print("Grade: A")
elif(avg>=80&avg<90):
print("Grade: B")
elif(avg>=70&avg<80):
print("Grade: C")
elif(avg>=60&avg<70):
print("Grade: D")
else:
print("Grade: F")

Sahil.mo
Автор

Tamil= iht (input ("Tamil: "))

English int (input("English: "))

Maths int (input ("Maths: "))

Science int (input ("Science: "))

Socialsci int (input ("Socialsci:"))

Total =

print ("Total: ", Total)

avg Total/5

print("Avg: ", avg)

if Tamil>=40 and English>=40 and Maths>=40 and Science>=40 and Socialsci>=40: print ("Result: PASS")

else:

print ("Result: FAIL")

Sahil.mo