Data Science & Analytics
Open in Telegram
🌟 Your hub for courses from platforms like Udemy, Coursera, EdX, and more! 📚 Explore top recommendations for books and learning resources. 🎯 Stay updated on the latest job opportunities in Data Science and Analytics. @Ahmedneamatallah
Show more4 477
Subscribers
No data24 hours
+37 days
+1030 days
Posts Archive
What will be the output of the following Python expression if x=56.236?
print("%.2f"%x)
Which of the following is not a core data type in Python programming?
What will be the output of the following Python function?
min(max(False,-3,-4), 2,7)
The following python program can work with ____ parameters.
def f(x): def f1(*args, **kwargs): print("Sanfoundry") return x(*args, **kwargs) return f1
Which of the following is the use of id() function in python?
Which of the following functions is a built-in function in python?
What will be the output of the following Python code?
l=[1, 0, 2, 0, 'hello', '', []] list(filter(bool, l))
Which of the following is the truncation division operator in Python?
What are the values of the following Python expressions?
2**(3**2) (2**3)**2 2**3**2
Which of the following is true for variable names in Python?
What will be the output of the following Python code snippet if x=1?
x<<2
Python supports the creation of anonymous functions at runtime, using a construct called __________
Which of the following functions can help us to find the version of python that we are currently working on?
What will be the output of the following Python code?
i = 1 while True: if i%3 == 0: break print(i) i + = 1
Which of the following character is used to give single-line comments in Python?
Which of the following is used to define a block of code in Python language?
