Skip to content

Commit 9fd1f28

Browse files
authored
dr abdul bari
1 parent a07781b commit 9fd1f28

File tree

4 files changed

+15
-42
lines changed

4 files changed

+15
-42
lines changed

day5.py

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
print("hii im rajeev")
2+
#its my fist comment
3+
print("hii mohan tum aache\nnhi ho")
4+
#auther or programmer is rajeev sharma
5+
print("auther or programmer is rajeev sharma")

first.py

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
print(5)
2+
print("h" , 54)
3+
print("byee")
4+
print(17*54)
5+
print(17-54)

main.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
print("i destroy my life")
2-
print("ok yes ")
1+
import pandas
2+
print("hi banni")

variable.py

+3-40
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,3 @@
1-
#string
2-
3-
name="riy.eev"
4-
print(type(name))
5-
6-
# integer
7-
8-
roll_no=143
9-
print(type(roll_no))
10-
11-
#floating nom
12-
13-
per=6.5
14-
per=95
15-
16-
print(type(per))
17-
18-
#boolean
19-
20-
is_student= True
21-
print(type(is_student))
22-
23-
print(name , roll_no , per , is_student)
24-
25-
print("my name is "+name + " and my roll no is" , roll_no )
26-
27-
print("i schored" , per , "% in final year . i am a student " , is_student)
28-
29-
#print expressiom
30-
31-
print("my per has change to " , per-10)
32-
33-
#printing with seperater
34-
35-
print(name, roll_no, per , is_student, sep="_")
36-
37-
x=1
38-
y=2
39-
z=3
40-
print(x,y,z, sep="->")
1+
x=13.5
2+
print(x)
3+
type(x)

0 commit comments

Comments
 (0)