L O A D I N G
blog banner

Category: Uncategorized

18 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 More
13 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 More
21 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 More
21 Jul, 2022

OSError errno22 invalid argument in Python

What is OSError?OSError is the type of error in OSError : [errno22] invalid argument. OSError

Read More
13 May, 2022

DataSets

Credit Card dataset for R Project : Download from here and unzip for the CSV

Read More
19 Mar, 2022

Installating R Studio

The RStudio IDE is a set of integrated tools designed to help you be more

Read More
18 Sep, 2021

Terms and Conditions

TERMS OF SERVICES PLEASE READ THIS TERMS OF SERVICE AGREEMENT CAREFULLY, AS IT CONTAINS IMPORTANT

Read More
18 Sep, 2021

What is machine learning

Hello again. Welcome to my blog, this is my third post. I will talk about

Read More