Font size
Worksheets9-Класс ТЕСТ 30-34
Total questions: 20
Worksheet time: 59mins
n = 7
float ( )
str ( )
int ( )
bool ( )
n = 1.7
int ( )
float ( )
str ( )
bool ( )
n = '32_school'
int ( )
float ( )
str ( )
bool ( )
x = True
y = False
int ( )
float ( )
str ( )
bool ( )
x = 54
print ( type (x) )
< class 'int' >
type(54)
54
< class 'int x = 54' >
d=True
print ( type (d) )
< class 'int' >
< class 'bool' >
d=True
True
x = 64.5
print ( type (x) )
< class 'int' >
type(64.5)
< class 'float' >
< class '64.5' >
x = 'Alpamis'
print ( type (x) )
x = 'Alpamis'
type(Alpamis)
< class 'float' >
< class 'str' >
print ( 12+7 )
12+7
19
print ( 12+7 )
print ( 19 )
print ( 15/2 )
print ( 15/2 )
7.5
print (7,5)
15.2
print ( 5**2 )
print ( 5**2 )
10
25
52
print ( 25//2 )
print ( 12.1 )
12
error
12,5
print ( 16%2 )
print ( 8.0 )
8
0
error
x=5
y=x**2+5
print(y)
30
10
25
5
x=5
x+=2
print(x)
NameError
2
10
7
x=8
x-=3
print(x)
5
11
3
NameError
x=15
x/=5
print(x)
10
20
3
NameError
x=3
x**=2
print(x)
5
9
2
NameError
←
y=((x+5)/(x**2-1))+(x**3+1)/2*x
y=((x+5)+(x**2-1))+(x**3/1)+2*x
y=(x+5)/(x^2-1)+(x^3+1)/2x
y=((x+5)//(x**2-1))+(x**3+1)//2*x
←
(a)
