-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path02.py
More file actions
32 lines (30 loc) · 825 Bytes
/
Copy path02.py
File metadata and controls
32 lines (30 loc) · 825 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
# a = [1, 2, 3, 4, 5,6 ]
# a[0] = 6
# a[5] = 1
# print(a)
# myvariblecase= "anoop"
# myVariablecase="anooP"
# myVsriableCase="Anoop"
# MyVariableCase="ANoop"
# MYVARIABLECASE="ANOOP"
# print(myVariablecase,myvariblecase,myVsriableCase,MyVariableCase,MYVARIABLECASE)
# Name =("Anoop","Mohit",'Orange')
# a,b,c = Name
# print(a)
# print(b)
# print(c)
# print(a,b,c)
# print(a + b + c)
# x = "awesome"
# def myfunc():
# print("Anoop is "+x )
# myfunc()
x = "awesome"
def myfunc():
# global x
# ''' due to this the value of x in entier code is equal to good(which is assign in function)
# or if you doesn't write printx in function than value of x is equal awesome(which assign out of the function)'''
x = "good"
# print("Anoop is "+x )
myfunc()
print("Anoop is "+ x)