Python Resources - Basic Python, ML, DataScience, BigData
رفتن به کانال در Telegram
You can find all kinds of resources related to Python, ML, DataScience and BigData. Resources — »»» @python_resources_iGnani Projects — »»» @python_projects_repository Questions— »»» @python_interview_questions Forum — »»» @python_programmers_club
نمایش بیشترکشور مشخص نشده استفناوری و برنامهها28 376
3 068
مشترکین
اطلاعاتی وجود ندارد24 ساعت
اطلاعاتی وجود ندارد7 روز
اطلاعاتی وجود ندارد30 روز
آرشیو پست ها
#PracticeCode: 0045
🎯 FORWARD IF YOU LIKE IT 🎯
Task:
Create a program to take input a month and year and print number of days in it.
Sample :-
input - January, 2020
output - days = 31
GOOD LUCK!
««« Discuss your solution @python_programmers_club and proper solutions will be added to our Github page »»»
««« Click here for the Solution »»»
🔥Ready to take this challenge? 🔥
#python #practiceCode #samples #interviewQuestions #conditions
x=1.23456789
'%f | %e | %g' %(x, x, x)
#What is the result? Explain Why?
#PracticeCode: 0044
🎯 FORWARD IF YOU LIKE IT 🎯
Task:
Create a program to print alphabet "A" on Screen.
Sample :-
***
* *
* *
*****
* *
* *
* *
GOOD LUCK!
««« Discuss your solution @python_programmers_club and proper solutions will be added to our Github page »»»
««« Click here for the Solution »»»
🔥Ready to take this challenge? 🔥
#python #practiceCode #samples #interviewQuestions #conditions
x = [1, 23, 'hello', 1]
type(x)
# What datatype of x? Explain?
x=56.236
print("%.2f"%x)
What is the result of these statements?
x='{0}, {1}, and {2}'
x.format('hello', 'Python Club', 'members')
# What is the output of this code.
x = bin((3**9) -1) == '{}'.format(bin((3**9) -1))
What is the value of x? Explain?
#PracticeCode: 0043
🎯 FORWARD IF YOU LIKE IT 🎯
Task:
Create a program to check validity of password given input by the users.
Conditons :
* At least 1 letter between [a-z] and 1 letter between [A-Z].
* At least 1 number between [0-9].
* At least 1 character from [$#@].
* Minimum length 6 characters.
* Maximum length 16 characters.
GOOD LUCK!
««« Discuss your solution @python_programmers_club and proper solutions will be added to our Github page »»»
««« Click here for the Solution »»»
🔥Ready to take this challenge? 🔥
#python #practiceCode #samples #interviewQuestions #conditions
Which of the following is a valid statement and runs without error?
#PracticeCode: 0042
🎯 FORWARD IF YOU LIKE IT 🎯
Task:
Create a program to take input a array of numbers and required sum. Now you have to print the lowest numbers from the array which sums to the required sum given as input.
Sample :-
input - [10,0,-1,20,25,30]
Required Sum - 45
output - [20,25]
GOOD LUCK!
««« Discuss your solution @python_programmers_club and proper solutions will be added to our Github page »»»
««« Click here for the Solution »»»
🔥Ready to take this challenge? 🔥
#python #practiceCode #samples #interviewQuestions #conditions
x = - - -5
#What is the value of x
'{} was created by {1} and first released in {2}'.format('Python','Guido van Rossum','1991')
#What is the output of the code shown above?
#PracticeCode: 0041
🎯 FORWARD IF YOU LIKE IT 🎯
Task:
Create a program in which a word or line is given as input and you have to print the number of letters, numbers and any special character (Not includes space) in it.
Sample :-
input - Python 3.8.1
output - Letters = 6
Numbers = 3
Special Char = 2
GOOD LUCK!
««« Discuss your solution @python_programmers_club and proper solutions will be added to our Github page »»»
««« Click here for the Solution »»»
🔥Ready to take this challenge? 🔥
#python #practiceCode #samples #interviewQuestions #conditions
What is the maximum length allowed for an identifier in Python 3?
x = 5,000,000.00
type(x)
# What is the datatype of x? Explain Why?
Ok, check this video which gives an hint to solve this problem https://youtu.be/WxiNUO7oXLQ
Practice Code: 051
Write a program to return the sum of a series of sequential numbers. The sequence can be
a. 1,2,3,4,5.......n
b. 1,3,5,7,9,11,.....n
c. 2,4,6,8,10,12.....n
d. 35,42,49,56,63....n
Note: Do not use a loop to add the numbers, if that is what your idea is, not use a sum() or similar function to add them.
Write an algorithm that optimally finds the sum total.
««« Click here for solution »»»
🔥Ready to take this challenge? 🔥
#python #practiceCode #samples #interviewQuestions #numbers #algorithm
x = (round(4.5) - - round(-4.5))
# What is the value of x? Explain Why?
Which of these in not a core datatype in Python 3?
Which of the following is an invalid statement?
