Skip to content

Commit b122e77

Browse files
new python program
1 parent 160a434 commit b122e77

21 files changed

+336
-0
lines changed

Class.py

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
"""Note: The self parameter is a reference to the current instance of the class, and is used to access variables that belong to the class.
2+
The self Parameter
3+
The self parameter is a reference to the current instance of the class, and is used to access variables that belongs to the class.
4+
5+
It does not have to be named self , you can call it whatever you like, but it has to be the first parameter of any function in the class:
6+
7+
"""
8+
class FirstClass:
9+
x=4
10+
11+
obj = FirstClass()
12+
print(obj.x)
13+
14+
15+
class Person:
16+
def __init__(self,name,age):
17+
self.name=name
18+
self.age=age
19+
20+
def fname(self):
21+
print("my name is :" + self.name)
22+
23+
24+
obj1=Person("Raja",34)
25+
print(obj1.name)
26+
print(obj1.age)
27+
obj1.fname()
28+
obj1.age=23
29+
print(obj1.age)

Dates.py

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import datetime
2+
3+
print(datetime.datetime.now())
4+
print(datetime.datetime.now().year)
5+
print(datetime.datetime.now().strftime("%A"))
6+
7+
today=datetime.datetime(2020,1,15)
8+
print(today)
9+
print(today.strftime("%B"))

Exception.py

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
try:
2+
print(x)
3+
except NameError:
4+
print("var not defined")
5+
except:
6+
print("other error")
7+
finally:
8+
print("this is finally block")
9+
10+
a=9
11+
if a < 3:
12+
raise Exception("its incorrect")
13+
14+
15+
# x = -1
16+
# if x < 0:
17+
# raise Exception("Sorry, no numbers below zero")
18+
19+
20+
d="raja"
21+
if not type(d) is int:
22+
raise TypeError("data type mismatch")

File.py

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
import os
2+
3+
f=open("test.txt","a")
4+
f.write("this is new line")
5+
f.close()
6+
7+
f=open("test.txt","rt")
8+
print(f.read())
9+
10+
print(f.readline())
11+
print(f.readline())
12+
13+
for i in f:
14+
print(i)
15+
16+
f.close()
17+
18+
f=open("test4.txt","x")
19+
20+
if f:
21+
print("file created")
22+
23+
if os.path.exists("test2.txt"):
24+
os.remove("test2.txt")
25+
else:
26+
print("file not exist")

Function.py

+54
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
"""
2+
Parameters or Arguments?
3+
The terms parameter and argument can be used for the same thing: information that are passed into a function.
4+
5+
From a function's perspective:
6+
A parameter is the variable listed inside the parentheses in the function definition.
7+
An argument is the value that is sent to the function when it is called.
8+
9+
10+
11+
def func(fname,mname,lname):
12+
print("name " + fname)
13+
14+
15+
func("raja")
16+
func("kumar")
17+
func("omkar")
18+
19+
20+
func(mname="kumar",lname="omkar", fname="shailendra")
21+
22+
23+
def func1(country="Bharat"):
24+
print("my country is: " + country )
25+
26+
func1()
27+
func1("Gremany")
28+
29+
30+
def func2(list2):
31+
for i in list2:
32+
print(i)
33+
34+
list1=["raja","kumar","omkar"]
35+
36+
func2(list1)
37+
38+
def func3(x):
39+
return x*5
40+
41+
#print(func3(4))
42+
43+
"""
44+
45+
def recurs(i):
46+
if (i>0):
47+
j=i+recurs(i-1)
48+
print(j)
49+
else:
50+
j=0
51+
return j
52+
53+
54+
recurs(4)

ImportModule.py

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import Modules
2+
import platform
3+
4+
Modules.name("raja")
5+
6+
print(Modules.dict1["age"])
7+
8+
print(platform.system())
9+
print(dir(platform))
10+
11+
print(dir(Modules))

Inheritance.py

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
class Person:
2+
def __init__(self,fname,lname):
3+
self.fname=fname
4+
self.lname=lname
5+
6+
def printname(self):
7+
print("my first name is:" + self.fname + " & my lname is : " + self.lname)
8+
9+
10+
obj=Person("Raja","Omkar")
11+
obj.printname()
12+
13+
class Child(Person):
14+
def __init__(self,fname, lname,year):
15+
super().__init__(fname,lname)
16+
self.year=year
17+
18+
def biodata(self):
19+
print("im inside child class: my first name is -> " + self.fname + " & my lname is : " + self.lname +"& i graduated in : "+ self.year)
20+
21+
c1=Child("Neha","Kalbhor","2009")
22+
c1.biodata()

Iterator.py

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name=["Raja","Kumar","Omkar"]
2+
x=iter(name)
3+
4+
print(next(x))
5+
print(next(x))
6+
print(next(x))
7+
8+
fname="Raja"
9+
f=iter(fname)
10+
11+
print(next(f))
12+
print(next(f))
13+
print(next(f))
14+
print(next(f))
15+
16+
class Number:
17+
def __iter__(self):
18+
self.x=1
19+
return self
20+
21+
def __next__(self):
22+
x=self.x
23+
self.x+=1
24+
return x
25+
26+
obj= Number()
27+
res = iter(obj)
28+
29+
print(next(res))
30+
print(next(res))
31+
print(next(res))
32+
print(next(res))
33+
34+
print(next(res))
35+
print(next(res))
36+
print(next(res))
37+
print(next(res))

JSON.py

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
import json
2+
3+
x='{"name":"raja","age":30,"city":"betul"}'
4+
5+
y=json.loads(x)
6+
print(y["name"])
7+
8+
a={
9+
"car":"fortuner",
10+
"bike":"bullet",
11+
"phone":"iphone"
12+
}
13+
14+
b=json.dumps(a)
15+
16+
print(b)
17+
18+
print(json.dumps(["a",1,2,3,True,False,None]))
19+
20+
d={
21+
"name":"neha",
22+
"age":30,
23+
"married":True,
24+
"hobbies":{
25+
"cooking":"Yes",
26+
"Gardening":"Yes"
27+
}
28+
}
29+
30+
print(json.dumps(d,indent=10, separators=("$","#"),sort_keys=True))

Lambda.py

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
x= lambda y:y+10
2+
print(x(4))
3+
4+
y=lambda a,b:a*b
5+
print(y(3,4))
6+
7+
def lam(x):
8+
return lambda y:y*x
9+
10+
res=lam(2)
11+
print(res(12))

Math.py

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
x=min(12,4,89)
2+
y=max(34,76,12)
3+
z=abs(-23.43)
4+
u=pow(3,4)
5+
6+
print(x)
7+
print(y)
8+
print(z)
9+
print(u)

Modules.py

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
def name(fname):
2+
print("hello: " +fname)
3+
4+
5+
dict1={
6+
"name":"Neha",
7+
"age":30
8+
}

PIP.py

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import camelcase
2+
3+
res=camelcase.CamelCase()
4+
5+
str="my name is raja"
6+
print(res.hump(str))

RegEx.py

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
import re
2+
3+
str="My name is raja"
4+
srch = re.search("^My .*ja$",str)
5+
6+
if srch:
7+
print("M found")
8+
else:
9+
print("not found")
10+
11+
12+
res=re.findall("a",str)
13+
print(res)
14+
15+
sp=re.split("a",str)
16+
print(sp)
17+
18+
sp=re.split("a",str,1)
19+
print(sp)
20+
21+
sp=re.split("a",str,2)
22+
print(sp)
23+
24+
sp=re.sub("\s", "*",str)
25+
print(sp)

Scope.py

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
x=98
2+
3+
def one():
4+
global x
5+
x=3
6+
print(x)
7+
def two():
8+
print(x)
9+
two()
10+
11+
one()
12+
print(x)

StringFormat.py

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
age=34
2+
data="My name is raja & my age is {}"
3+
print(data.format(age))

UserInput.py

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
x=input("enter your name: ")
2+
print("your name is : " + x)

__pycache__/Modules.cpython-39.pyc

298 Bytes
Binary file not shown.

test.txt

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
test.txt
2+
3+
hello
4+
hi
5+
this
6+
7+
is very
8+
9+
good
10+
sadasd
11+
12+
asdsd
13+
r2424
14+
d
15+
16+
erer
17+
18+
w
19+
r2424wr
20+
erewrthis is new linethis is new linethis is new linethis is new linethis is new linethis is new linethis is new linethis is new linethis is new line

test3.txt

Whitespace-only changes.

test4.txt

Whitespace-only changes.

0 commit comments

Comments
 (0)