Which keyword is used for function
in Python language?
in Python language?
Anonymous Quiz
12%
function
75%
def
10%
fun
3%
define
Python supports the creation of
anonymous functions at runtime,
using a construct called_________
anonymous functions at runtime,
using a construct called_________
Anonymous Quiz
16%
pi
21%
anonymous
55%
lambda
8%
none
Download all these books For Free π https://inprogrammer.com/5-must-read-free-books-for-beginners/
What will be the Output
def fun_x(x):
X=X+'2' x=x*2 return x print(fun_X("python")
def fun_x(x):
X=X+'2' x=x*2 return x print(fun_X("python")
Anonymous Quiz
33%
python2python2
17%
python2
42%
Error
7%
None of above
Is Python case sensitive when
dealing with identifiers?
dealing with identifiers?
Anonymous Quiz
71%
yes
16%
no
12%
machine dependent
1%
none
5 Free books for every beginner python programmer ππ https://inprogrammer.com/5-must-read-free-books-for-beginners-part-2/
What do you likeπ€
Anonymous Poll
44%
Python Programming
20%
Ethical Hacking
15%
Web Development
17%
Data Science
3%
Android development
from turtle import *
bgcolor('black')
speed(0)
hideturtle()
for i in range(120):
color('red')
circle(i)
color('orange')
circle(i*0.8)
right(3)
forward(3)
done()
bgcolor('black')
speed(0)
hideturtle()
for i in range(120):
color('red')
circle(i)
color('orange')
circle(i*0.8)
right(3)
forward(3)
done()