Skip to content

Commit 0f25e4e

Browse files
Code
1 parent d015df0 commit 0f25e4e

File tree

89 files changed

+1244
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

89 files changed

+1244
-0
lines changed

ASCII_Value.py

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Python Program to Find ASCII Value of Character.
2+
# (Use of ORD() Function)
3+
Sag = "S"
4+
print("The ASCII Value of", Sag, "is", ord(Sag))
5+
6+
sag = "s"
7+
print("The ASCII Value of", sag, "is", ord(sag))
8+
9+
Moh = "M"
10+
print("The ASCII Value of", Moh, "is", ord(Moh))
11+
12+
moh = "m"
13+
print("The ASCII Value of", moh, "is", ord(moh))
14+
15+
Gos = "$"
16+
print("The ASCII Value of", Gos, "is", ord(Gos))
17+
18+
gos = "#"
19+
print("The ASCII Value of", gos, "is", ord(gos))

Access_Index_List.py

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Python Program to Access Index of a List Using For Loop.
2+
3+
# Solution 1 : Using Enumerate Method
4+
list = [7,17,27,37,47]
5+
for index, value in enumerate(list, start=1):
6+
print(index,'-',value)
7+
8+
# Solution 2 : Not Using Enumerate Method
9+
list = [7,17,27,37,47]
10+
for index in range(len(list)):
11+
value = list[index]
12+
print(index,value)
13+

Add_Two_Matrices.py

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Python Program to Add Two Matrices.
2+
3+
A = [[1,3,5],
4+
[7,9,11],
5+
[13,15,17]]
6+
7+
B = [[2,4,6],
8+
[8,10,12],
9+
[14,16,18]]
10+
11+
Result = [[0,0,0],
12+
[0,0,0],
13+
[0,0,0]]
14+
15+
for i in range(len(A)):
16+
for j in range(len(A[0])):
17+
Result[i][j] = A[i][j] + B[i][j]
18+
19+
for r in Result:
20+
print(r)
21+

Add_Two_Numbers.py

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Write a Program Add Two Numbers in Python.
2+
# 1st Method (With Pre-defined Variables)
3+
# num1 = 45
4+
# num2 = 27
5+
# sum = num1 + num2
6+
# print("Sum is: ", sum)
7+
8+
# 2nd Method (With User Inputs)
9+
num1 = float(input("Enter the First Number: "))
10+
num2 = float(input("Enter the Second Number: "))
11+
sum = num1 + num2
12+
print("Sum is: ", sum)

Alphabetic_Order.py

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Python Program to Sort Words in Alphabetic Order.
2+
3+
# a = "Harry Potter and the Goblet of Fire"
4+
a = input("Enter Something Here: ")
5+
b = a.split()
6+
7+
print(b)
8+
9+
for i in range (len(b)):
10+
b[i] = b[i].lower()
11+
12+
print(b)
13+
b.sort()
14+
print(b)
15+
16+
# for Alphabetic Order
17+
for i in b:
18+
print(i)

Append_To_File.py

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Python Program to Append to a File.
2+
f = open("Append_To_File.txt", "a")
3+
f.write("\nThis is My Demo File")
4+
s = "\nHope You Like It"
5+
6+
for i in range(0, 5):
7+
f.write(s)
8+
f.close()

Append_To_File.txt

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
Hello Guys, My Name is Sagar Goswami.
2+
3+
This is My Demo File
4+
Hope You Like It
5+
Hope You Like It
6+
Hope You Like It
7+
Hope You Like It
8+
Hope You Like It

Area_Of_Triangle.py

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Python Program to Calculate the Area of a Triangle.
2+
# Solution : (0.5 X Base X Height)
3+
height = float(input("Enter the Height of the Triangle: "))
4+
base = float(input("Enter the Base of the Triangle: "))
5+
6+
area = (0.5) * height * base
7+
8+
print("The Area of Triangle is: ", area)

Armstrong_Number.py

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Python Program to Check Armstrong Number.
2+
num = int(input("Enter a Number: "))
3+
order = len(str(num))
4+
5+
sum = 0
6+
temp = num
7+
8+
while temp > 0:
9+
digit = temp % 10
10+
# sum += digit ** 3
11+
cube = digit ** order
12+
sum = sum + cube
13+
temp //= 10
14+
15+
if sum == num:
16+
print("It is an Armstrong Number")
17+
else:
18+
print("It is not an Armstrong Number")

Armstrong_Number_Interval.py

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Python Program to find Armstrong Number in an Interval.
2+
lower = int(input("Enter the Lower Limit Here: "))
3+
upper = int(input("Enter the Upper Limit Here: "))
4+
5+
for num in range(lower, upper + 1):
6+
order = len(str(num))
7+
sum = 0
8+
temp = num
9+
while temp > 0:
10+
digit = temp % 10
11+
sum += digit ** order
12+
temp //= 10
13+
if num == sum:
14+
print(num)
15+

Calendar.py

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Python Program to Display Calendar.
2+
import calendar
3+
4+
year = int(input("Enter Year: "))
5+
month = int(input("Enter Month: "))
6+
7+
calendar = calendar.month(year, month)
8+
print(calendar)

Capitalize_First_Character.py

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Python Program to Capitalize the First Character of a String.
2+
3+
# Method 1: Using .upper() and Slicing Concepts
4+
a = "sagargoswami2001"
5+
print(a[0].upper() + a[1:])
6+
7+
8+
# Method 2: Using Capitalize() Method
9+
s = "ocean"
10+
print(s.capitalize())
11+
print(s)

Catch_Multiple_Exceptions.py

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Python Program to Catch Multiple Exceptions in One Line.
2+
3+
# Method 1: Handling Multiple Exceptions
4+
string = input("Enter Something Here: ")
5+
6+
try:
7+
num = int(input("Enter a Number Here: "))
8+
print(string + num)
9+
except (ValueError,TypeError) as a:
10+
print(a)
11+

Celsius_to_Fahrenheit.py

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Python Program to Convert Celsius to Fahrenheit.
2+
celsius = int(input("Enter Temperature in Celsius: "))
3+
fahrenheit = (celsius * (9/5)) + 32
4+
print("The Converted Value is: ", fahrenheit, 'Fahrenheit')

Check_File_Size.py

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Python Program to Check the File Size.
2+
3+
# Method 1: Using os Module
4+
import os
5+
6+
file_size = os.stat("C:/Users/SHIVSHANKAR/Documents/Python Programming/Python Programs for Practice/Check_File_Size.py")
7+
print(file_size)
8+
print(file_size.st_size)
9+
10+
11+
# Method 2: Using pathlib Module
12+
from pathlib import Path
13+
14+
file_size = Path("C:/Users/SHIVSHANKAR/Documents/Python Programming/Python Programs for Practice/Check_File_Size.py")
15+
print(file_size.stat())
16+
print(file_size.stat().st_size)

Class_Name_Instance.py

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Python Program to Get the Class Name of an Instance.
2+
3+
# Method 1: Using __class__.__name__
4+
class SmartPhone:
5+
def name(self,name):
6+
return name
7+
8+
s1 = SmartPhone()
9+
print(s1.__class__.__name__)
10+
11+
12+
# Method 2: Using type() and __name__ Attributes
13+
class SmartPhone:
14+
def name(self,name):
15+
return name
16+
17+
s1 = SmartPhone()
18+
print(type(s1).__name__)
19+
print(type(s1))

Compute_Power.py

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# Python Program to Compute the Power of a Number.
2+
3+
# Method 1: Using While Loop
4+
base = int(input("Enter the Base Number: "))
5+
exponent = int(input("Enter the Exponent: "))
6+
7+
result = 1
8+
while exponent != 0:
9+
result = result * base
10+
exponent = exponent-1
11+
12+
print("The Computed Value is", result)
13+
14+
15+
# Method 2: Using For Loop
16+
base = int(input("Enter the Base Number: "))
17+
exponent = int(input("Enter the Exponent: "))
18+
19+
result = 1
20+
for i in range(exponent, 0,-1):
21+
result = result * base
22+
23+
print("The Computed Value is: ", result)
24+
25+
26+
# Method 3: Using Power() Function
27+
base = int(input("Enter Base Here: "))
28+
exp = int(input("Enter Exponent Here: "))
29+
30+
x = pow(base, exp)
31+
print("The Computed Value is: ", x)
32+
33+
34+
# Method 4: Using Exponentiaition Operator
35+
base = int(input("Enter Base Here: "))
36+
exp = int(input("Enter Exponent Here: "))
37+
38+
value = base ** exp
39+
print("The Computed Value is: ", value)

Concatenate_Two_Lists.py

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Python Program to Concatenate Two Lists.
2+
3+
# Method 1: Using + Operator
4+
List1 = [3,6,9,"S","G"]
5+
List2 = [2,4,6,"M","G"]
6+
List3 = List1 + List2
7+
print(List3)
8+
9+
10+
# Method 2: Using Unique Values
11+
List1 = [3,6,9,"S","G"]
12+
List2 = [2,4,6,"M","G"]
13+
# List3 = {2,4,6,8,10,8,6,4,2}
14+
List3 = list(set(List1 + List2))
15+
print(List3)
16+
17+
18+
# Method 3: Using Extend() Function
19+
List1 = [3,6,9,"S","G"]
20+
List2 = [2,4,6,"M","G"]
21+
List1.extend(List2)
22+
print(List1)

Convert_Bytes_To_String.py

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Python Program to Convert Bytes to a String.
2+
3+
print(b'My Name is Sagar Goswami \xF0\x9F\x98\x83'.decode("utf-8"))

Convert_Dec_to_Bin_&_Oct_to_Hex.py

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Python Program to Convert Decimal to Binary, Octal and Hexadecimal.
2+
decimal = int(input("Enter a Number Here: "))
3+
4+
print("The Conversion of Decimal Number", decimal,"is: ")
5+
print(bin(decimal),"in Binary")
6+
print(oct(decimal),"in Octal")
7+
print(hex(decimal),"in Hexadecimal")

Convert_String_to_Datetime.py

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Python Program to Convert String to Datetime.
2+
3+
# Method 1: Using DateTime Module
4+
from datetime import datetime
5+
6+
date = "Jun 27 2001 4:00AM"
7+
print(type(date))
8+
9+
date_time = datetime.strptime(date, "%b %d %Y %I:%M%p")
10+
print(date_time)
11+
print(type(date_time))
12+
13+
14+
# Method 2: Using Dateutil Module
15+
from dateutil import parser
16+
17+
date_time = parser.parse("Jun 27 2001 4:00AM")
18+
print(type(date_time))
19+
print(date_time)

Convert_Two_Lists.py

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Python Program to Convert Two Lists Into a Dictionary.
2+
3+
# Method 1: Using ZIP() And Dictionary Methods
4+
name = ["Sagar", "Mohit", "Goswami", "Ocean"]
5+
marks = [98,97,96,95]
6+
7+
dictionary = zip(name, marks)
8+
print(dict(dictionary))
9+
10+
11+
# Method 2: Using ZIP() And List Comprehension
12+
name = ["Sagar", "Mohit", "Goswami", "Ocean"]
13+
marks = [98,97,96,95]
14+
15+
dictionary = {key:value for key, value in zip(name,marks)}
16+
print(dictionary)

Count_Each_Vowel.py

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Python Program to Count the Number of Each Vowel.
2+
3+
# Method 1 : Using Dictionary
4+
# s = "My Name is Sagar Goswami"
5+
# vowels = "aeiou"
6+
7+
# s = s.casefold()
8+
# print(s)
9+
10+
# count = {}.fromkeys(vowels,0)
11+
12+
# for char in s:
13+
# if char in count:
14+
# count[char]+=1
15+
16+
# print(count)
17+
18+
# Method 2 : Using List And Dictionary Comprehension
19+
s = "My Name is Sagar Goswami"
20+
vowels = "aeiou"
21+
22+
s = s.casefold()
23+
24+
count = {key:sum([1 for char in s if char == key]) for key in vowels}
25+
print(count)

Count_the_Occurrence.py

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Python Program to Count the Occurrence of an Item in a List.
2+
numbers = [10,20,30,40,50,60,70,80,90,30,40]
3+
count_occurrence = numbers.count(30)
4+
print(count_occurrence)

Countdown_Timer.py

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Python Program to Create a Countdown Timer.
2+
import time
3+
4+
def countdown(sec):
5+
while sec:
6+
mins, secs = divmod(sec, 60)
7+
time_format = "{:02d}:{:02d}".format(mins, secs)
8+
print(time_format)
9+
time.sleep(1)
10+
sec -= 1
11+
12+
print("Stop")
13+
14+
countdown(9)

Create_Nested_Directory.py

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Python Program to Safely Create a Nested Directory.
2+
from pathlib import Path
3+
Path("C:/Users/SHIVSHANKAR/Desktop/New_Folder/Sagar").mkdir(parents=True,exist_ok=True)

0 commit comments

Comments
 (0)