-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathvideo17.py
79 lines (60 loc) · 1.11 KB
/
video17.py
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# -*- coding: utf-8 -*-
"""Video17.ipynb
Automatically generated by Colaboratory.
Original file is located at
https://colab.research.google.com/drive/1wwtoAK6FOlUJGqllsKix3CHigVRJCwDg
"""
#function
'''
def name(input1, input2, ...):
----
----
----
return output1,out2,...
'''
print("Function")
#power
x = int(input("paye :"))
y = int(input("tavan : "))
p = 1
for i in range(y):
p=p*x
print(x, "^", y, "=", p)
def power(paye, tavan):
o = 1
for i in range(tavan):
o = o * paye
return o
power(2,3)
power(3,4)
power(4,4)
power(1,2)
x = 2
y = 3
power(x,y)
x = int(input("paye :"))
y = int(input("tavan : "))
r = power(x,y)
print(type(r))
print(x,"^",y,"=",r)
def print_etelaat(name, age, ghad):
print("name :", name, type(name))
print("age :", age, type(age))
print("ghad :", ghad, type(ghad))
print_etelaat("ali", 20, 179.6)
n = "amirhossein"
a = 24
g = 187.3
print_etelaat(n,a, g )
name = "amirhossein"
age = 24
ghad = 187.3
print_etelaat(name,age, ghad )
def powert(paye, tavan):
o = 1
x = 75
for i in range(tavan):
o = o * paye
return o, x, o*7
x,y,z = powert(5,2)
print(x,y,z)