Author: admin
2 May, 2023
Python and Machine Learning Course May 2023
Click here to see Python and other software installaton steps Day 1 Introduction and Print()
Read More18 Apr, 2023
Programming with Hari
Access all videos from here print(‘Hello’)print() #comment is for human being#sdfsdfdsfsdfdsfprint(‘hello again hhjvjbhjhlbbuihuhuhuhu’)print(‘5+3’)print(5+3)print(“4+6=”,4+6)# y = x + 5, find y when x is 3# 5 is constant – you cant change its value# x, y are variables – their values can change# y dependent variable because its value depends on x# x is independent variable because you can assign any value to itx = 3y = x+ 5print(“When X is “,x,“then Y is “,y)# write a program to calculate area of a rectanglel = 5b = 8area = l * bprint(” Length is”,l,“breadth is”,b,“and area is”,area)# f-string format stringprint(f“Length is {l} and breadth is {b} so the area is {area}“)#calculate area and circumference of a circle and print the output as:# Circle with a radius will have area of area and circumference of circumference# arithematicval1 , val2 = 25,20print(val1 + val2)print(val1 - val2)print(val1
Read More13 Apr, 2023
Django Learning with Jeswanth
All videos are available here: https://www.youtube.com/playlist?list=PLF9fJE4vTtTLnXYzr_19r1NVRWuNV892t Access all the videos here BASIC INFORMATION For Basic
Read More8 Apr, 2023
DS-Weekend-022023
print("Hello",5+4,end=" ")print("6+3=",6+3,end="n")print("How are you?",end="n")print("This line n for new line") ;# integer - inta=5;print(type(a))#string - str#boolean
Read More1 Apr, 2023
Weekend DS Batch April 2023
Download software and make it ready for programming.. refer this link #1. Python programming- Python
Read More21 Mar, 2023
SQL Tutorial March 2023
SQL Programming - Sessions select * from hr.employees; Select first_name, last_name, email from hr.employees; Select first_name, last_name,
Read More20 Mar, 2023
Sessions with Pradyun
Follow Python Installation Steps From Here: Https://Learn.Swapnil.Pw/Python/Pythoninstallation/Python IDEs – Https://Learn.Swapnil.Pw/Python/Pythonides/print("HELLO")# 1. INSTALLATION - getting your computer
Read More16 Feb, 2023
Python Class with Advait
#variables are used to store some valuesvar1 = 50var2 = 100print(var1 + var2)var1 = 500var2
Read More15 Feb, 2023
Learn R Programming
var1 = 5var1 = 50print(var1)#[1] 50print(var1 + var4)var = 55var = 55var4 = 55#print(var1, var4)#Error
Read More6 Feb, 2023
Learn Python – Evening Jan 2022 – II
############################str1 = 'HELLO'str2 = "I am fine"str3 = '''Where are you going?How long will you
Read More