-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathday3.py
More file actions
40 lines (38 loc) · 728 Bytes
/
day3.py
File metadata and controls
40 lines (38 loc) · 728 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
x=5
y="jone"
print (x)
print (y)
#*******************************************
x=4 # x is of type int
x="salary" # x is of type string
print (x)
#*******************************************
x='jone'
print (x)
x="jone"
print (x)
#*******************************************
x,y,z ="orange" ,"banana" ,"cherry"
print(x)
print(y)
print(z)
#******************************************
x=y=z ="orange"
print(x)
print(y)
print(z)
#******************************************
x="awesome"
print (" python is"+x)
#*****************************************
x="python is"
y="awesome"
z=x+y
print(z)
#********************************************
x=5 ; y=10
print(x+y)
#********************************************
x=5
y="jone"
print(x+y)