diff --git a/Untitled29.html b/Untitled29.html new file mode 100644 index 0000000..5f9c6b6 --- /dev/null +++ b/Untitled29.html @@ -0,0 +1,14771 @@ + + +
+ + +import numpy as n
+a=n.array([2,4,6])
+b=n.array([3,5,6])
+print(n.sum([a,b]))
+26 ++
a+b
+array([ 5, 9, 12])+
import re
+p=re.compile('a*')
+s=input("enter the string")
+match=p.search(s)
+print(match.group())
+enter the stringaaacgdrd +aaa ++
import re
+p=re.compile('.')
+s=input("enter the string")
+match=p.search(s)
+print(match.group())
+enter the stringaesdaesd +a ++
+