Category: Python Programming
Python Programming concepts, programs, discussions
5 Sep, 2023
PYTHON TRAINING SESSIONS SEP 2023
print( "sdfsadgdsgds" )# inbuilt functions, followed with ()# are for comments - you are asking
Read More20 Aug, 2023
Object Oriented Programming – Properties using Python
'''ENCAPSULATION:1. Giving required access to the user: a. public access: public members can be called
Read More23 Jul, 2023
JULY Weekend Data Science
print(); print(3+5*2-5+ 100); print('3+5*2-5+100 ')print('3+5*2-5+100=', 3 + 5*2-5+100) #parameters = 2print('3+5*2-5+100=',3+5*2-5+100, "Hello",5*2)# Comments - this
Read More21 Jul, 2023
Data Structure using Python
### MAPS - based on Dictionariesimport collectionsd1 = {"name":"Sachin","city":"Mumbai","age":50}d2 = {"sports":"Hockey","team":"India","Goals":322}output = collections.ChainMap(d1,d2)print(output.maps)print("Keys = ",list(output.keys()))print("Values
Read More29 Jun, 2023
Mini Python Projects
BILLING PROJECT USING CSV FILE file = "expenses.csv"import csvdef add_details(): while True: code = input("Enter
Read More7 Jun, 2023
Mastering Data Science – June 2023
Mastering Data Science Course - JUNE 2023 Installation of: PYTHON: click here for the detailsIDE: click
Read More2 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 More