Skip to content

Commit 1f6eb52

Browse files
committedJun 7, 2019
added new programs for python operator
1 parent 3eb90f1 commit 1f6eb52

3 files changed

+142
-0
lines changed
 

‎#6_Python_Type_Conversion.py

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
# Python code to demonstrate Type conversion
2+
# int(a,base) : This function converts any data type to integer. ‘Base’ specifies the base in which string is if data type is string.
3+
# float() : This function is used to convert any data type to a floating point number
4+
# complex(): This function is used to convert any data type to complex data type
5+
# bool(): This function is used to identify the value is 0 or not it return True or False
6+
7+
a=1
8+
b="101010"
9+
10+
print ("Convert Value in integer data type",int(b,2),)
11+
12+
print ("Convert value in float data type",float(a),)
13+
14+
print ("convert value in complex data type",complex(a),)
15+
16+
print ("validiate value as boolen datatype",bool(a),)
17+
18+
# using ord(), hex(), oct()
19+
# initializing integer
20+
example = '4'
21+
22+
# printing character converting to integer
23+
output = ord(example)
24+
print ("After converting character to integer : ",end="")
25+
print (output)
26+
27+
# printing integer converting to hexadecimal string
28+
output = hex(50)
29+
print ("After converting 56 to hexadecimal string : ",end="")
30+
print (output)
31+
32+
# printing integer converting to octal string
33+
output = oct(60)
34+
print ("After converting 56 to octal string : ",end="")
35+
print (output)
36+
37+
example=0
38+
output = (bool(example))
39+
print ("validating example value is 0 or not using bool function: ", end="")
40+
print (output)
41+
42+
example=1
43+
output = (bool(example))
44+
print ("validating example value is 0 or not using bool function: ", end="")
45+
print (output)
46+
47+
example=-1
48+
output = (bool(example))
49+
print ("validating example value is 0 or not using bool function: ", end="")
50+
print (output)

‎#7_Python_set_data_type.py

+73
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
# A set is an unordered collection of items. Every element is unique (no duplicates) and must be immutable (which cannot be changed).
2+
#
3+
# Operators for Sets
4+
# Sets and frozen sets support the following operators:
5+
#
6+
# key in set-example # containment check
7+
#
8+
# key not in set-example # non-containment check
9+
#
10+
# set-1 == set-2 # set-1 is equivalent to set-2
11+
#
12+
# set-1 != set-2 # set-1 is not equivalent to set-2
13+
#
14+
# set-1 <= set-2 # set-1is subset of set-2 set-1 < set-2 # set-1 is proper subset of set-2 set-1 >= set-2 # set-1is superset of set-2
15+
#
16+
# set-1 > set-2 # set-1 is proper superset of set-2
17+
#
18+
# set-1 | set-2 # the union of set-1 and set-2
19+
#
20+
# set-1 & set-2 # the intersection of set-1 and set-2
21+
#
22+
# set-1 – set-2 # the set of elements in set-1 but not set-2
23+
#
24+
# set-1 ˆ set-2 # the set of elements in precisely one of set-1 or set-2
25+
#
26+
27+
set1=set('abc')
28+
set2=set('bcd')
29+
30+
output=set1|set2
31+
print ("Output for : ", end="")
32+
print (output)
33+
34+
print("Set1 = ", set1)
35+
print("Set2 = ", set2)
36+
print("\n")
37+
38+
# Union of set1 and set2
39+
set3 = set1 | set2# set1.union(set2)
40+
print("Union of Set1 & Set2: Set3 = ", set3)
41+
42+
# Intersection of set1 and set2
43+
set4 = set1 & set2# set1.intersection(set2)
44+
print("Intersection of Set1 & Set2: Set4 = ", set4)
45+
print("\n")
46+
47+
# Checking relation between set3 and set4
48+
if set3 > set4: # set3.issuperset(set4)
49+
print("Set3 is superset of Set4")
50+
elif set3 < set4: # set3.issubset(set4)
51+
print("Set3 is subset of Set4")
52+
else : # set3 == set4
53+
print("Set3 is same as Set4")
54+
55+
# displaying relation between set4 and set3
56+
if set4 < set3: # set4.issubset(set3)
57+
print("Set4 is subset of Set3")
58+
print("\n")
59+
60+
# difference between set3 and set4
61+
set3 = set1 - set2
62+
print("Elements in Set1 and not in Set2: Set3 = ", set3)
63+
print("\n")
64+
65+
# checkv if set4 and set5 are disjoint sets
66+
if set1.isdisjoint(set2):
67+
print("Set1 and Set2 have nothing in common\n")
68+
69+
# Removing all the values of set5
70+
set1.clear()
71+
72+
print("After applying clear on sets Set5: ")
73+
print("Set1 = ", set1)
+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Assignment operators in Python
2+
# Operator Example Equivatent to
3+
# = x = 5 x = 5
4+
# += x += 5 x = x + 5
5+
# -= x -= 5 x = x - 5
6+
# *= x *= 5 x = x * 5
7+
# /= x /= 5 x = x / 5
8+
# %= x %= 5 x = x % 5
9+
# //= x //= 5 x = x // 5
10+
# **= x **= 5 x = x ** 5
11+
# &= x &= 5 x = x & 5
12+
# |= x |= 5 x = x | 5
13+
# ^= x ^= 5 x = x ^ 5
14+
# >>= x >>= 5 x = x >> 5
15+
# <<= x <<= 5 x = x << 5
16+
17+
x=5
18+
#output=a+
19+
print ("a+ output is :",(x += 5),)

0 commit comments

Comments
 (0)
Please sign in to comment.