1598254507
SharePoint is a web-site based collaboration system that uses workflow applications, list databases, and other web parts and security features to empower business teams to work together. SharePoint also gives the company using the platform the ability to control access to the information and automate the workflow processes across business units.
In simpler words, SharePoint allows you to manage all of your corporate content, creation of websites, and the organization’s intranets to keep your users informed on what is happening, creating business process automation to automate tedious and mundane tasks and build customized apps that can help to boost your team’s productivity.
Lately, I came across a problem while making a POC on Invoice automation where i had to extract data from an invoice and store it in a SharePoint list. The problem was that the Invoice Processing System that I built was made using Python and Django, so finding a way to achieve the task seemed difficult in the initial days. After doing some research and looking for some resources, I stumbled into a Python library called shareplum which helps you to interact with SharePoint using Python.
#python #sharepoint #crud
1619518440
Welcome to my Blog , In this article, you are going to learn the top 10 python tips and tricks.
…
#python #python hacks tricks #python learning tips #python programming tricks #python tips #python tips and tricks #python tips and tricks advanced #python tips and tricks for beginners #python tips tricks and techniques #python tutorial #tips and tricks in python #tips to learn python #top 30 python tips and tricks for beginners
1619510796
Welcome to my Blog, In this article, we will learn python lambda function, Map function, and filter function.
Lambda function in python: Lambda is a one line anonymous function and lambda takes any number of arguments but can only have one expression and python lambda syntax is
Syntax: x = lambda arguments : expression
Now i will show you some python lambda function examples:
#python #anonymous function python #filter function in python #lambda #lambda python 3 #map python #python filter #python filter lambda #python lambda #python lambda examples #python map
1619565060
What is a ternary operator: The ternary operator is a conditional expression that means this is a comparison operator and results come on a true or false condition and it is the shortest way to writing an if-else statement. It is a condition in a single line replacing the multiline if-else code.
syntax : condition ? value_if_true : value_if_false
condition: A boolean expression evaluates true or false
value_if_true: a value to be assigned if the expression is evaluated to true.
value_if_false: A value to be assigned if the expression is evaluated to false.
How to use ternary operator in python here are some examples of Python ternary operator if-else.
Brief description of examples we have to take two variables a and b. The value of a is 10 and b is 20. find the minimum number using a ternary operator with one line of code. ( **min = a if a < b else b ) **. if a less than b then print a otherwise print b and second examples are the same as first and the third example is check number is even or odd.
#python #python ternary operator #ternary operator #ternary operator in if-else #ternary operator in python #ternary operator with dict #ternary operator with lambda
1598254507
SharePoint is a web-site based collaboration system that uses workflow applications, list databases, and other web parts and security features to empower business teams to work together. SharePoint also gives the company using the platform the ability to control access to the information and automate the workflow processes across business units.
In simpler words, SharePoint allows you to manage all of your corporate content, creation of websites, and the organization’s intranets to keep your users informed on what is happening, creating business process automation to automate tedious and mundane tasks and build customized apps that can help to boost your team’s productivity.
Lately, I came across a problem while making a POC on Invoice automation where i had to extract data from an invoice and store it in a SharePoint list. The problem was that the Invoice Processing System that I built was made using Python and Django, so finding a way to achieve the task seemed difficult in the initial days. After doing some research and looking for some resources, I stumbled into a Python library called shareplum which helps you to interact with SharePoint using Python.
#python #sharepoint #crud
1621499652
Python Programming language makes everything easier and straightforward. Effective use of its built-in libraries can save a lot of time and help with faster submissions while doing Competitive Programming. Below are few such useful tricks that every Pythonist should have at their fingertips:
Below is the implementation to convert a given number into a list of digits:
#competitive programming #python programs #python-itertools #python-library #python-list #python-list-of-lists #python-map