<< < 34 35 36 37 38 39 40 41 42 43 44 > >>   Sort: Rank

What Is Python Interactive Mode
What Is Python Interactive Mode? Python Interactive Mode allows you to use Python as an interpreted language. When running in interactive mode, Python will: Prompt you to enter one statement or statement block at a time. Execute the statement or statement block immediately. Print back the result if ...
2018-04-12, 1646🔥, 0💬

Verify Python Installation on Windows
How to verify the Python installation on my Windows computer? You can follow this tutorial to verify the Python installation on your Windows computer: 1. Search Python with the Start button - Enter "Python" in the search box after clicking the "Start" button. If the "Python" is displayed in the sear...
2018-04-12, 1551🔥, 0💬

Using Python in Interactive Mode
Where to find tutorials on using Python in Interactive Mode? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on using Python in Interactive Mode: What Is Python Interactive Mode Start Python in Interactive Mode help() - Getting Help in Python Inte...
2018-04-12, 1356🔥, 0💬

Install Latest Version of Python for Windows
How to install the latest version of Python on my Windows computer? I have the Python for Windows file downloaded. If you have the latest version of Python for Windows downloaded, you can follow this tutorial to install it: 1. Double click the Python download file, for example \fyicenter\python-3.6....
2018-04-12, 1354🔥, 0💬

'str' Literals and Conversions
How to specify "str" values in Python code? "str" values can be specified using "str" literals or the str() conversion function as shown in this tutorial: 1. "str" literals in double quotes as shown below: &gt;&gt;&gt; "FYIcenter.com" 'FYIcenter.com' &gt;&gt;&gt; "He says: \"...
2018-04-07, 1298🔥, 0💬

'list' Literals and Conversions
How to specify "list" values in Python code? "list" values can be specified using "list" literals or the list() conversion function as shown in this tutorial: 1. "list" literals in [v1, v2, ...] format as shown below: &gt;&gt;&gt; ["Age", 25] ['Age', 25] &gt;&gt;&gt; ["Age", ...
2018-04-07, 1278🔥, 0💬

'float' Literals and Conversions
How to specify "float" values in Python code? "float" values can be specified using "float" literals or the float() conversion function as shown in this tutorial: 1. "float" literals in scientific notations as shown below: &gt;&gt;&gt; 3.14159 3.14159 &gt;&gt;&gt; -2.14 -2.14...
2018-04-07, 1267🔥, 0💬

Python Built-in Structured Data Types
Python Built-in Structured Data Types? Python Built-in Structured Data Types are data types provided by the Python interpreter to represent structures of data values: Here is a list of commonly used Python Built-in Structured Data Types: "str" - String data type for sequences of Unicode characters, ...
2018-04-07, 1261🔥, 0💬

'bytes' Literals and Conversions
How to specify "bytes" values in Python code? "bytes" values can be specified using "bytes" literals or the bytes() conversion function as shown in this tutorial: 1. "bytes" literals in b'...' or b"..." format as shown below: &gt;&gt;&gt; b'FYIcenter.com' b'FYIcenter.com' &gt;&gt...
2018-04-07, 1211🔥, 0💬

Add Operation to API on Publisher Dashboard
How to add a new operation to an API on the Publisher Dashboard of an Azure API Management Service? You can follow this tutorial to add a new operation to an API on the Publisher Portal of an Azure API Management Service. 1. Click on the API name from the API list to open it. You see detailed inform...
2018-03-31, 3509🔥, 0💬

View API Details on Publisher Dashboard
How to view API details on the Publisher Dashboard of an Azure API Management Service? You can follow this tutorial to view detailed information of API on the Publisher Dashboard of an Azure API Management Service. Click on the API name from the API list to open it. You see detailed information of t...
2018-03-31, 3369🔥, 0💬

Operation Setting: 'Rewrite URL template' - 2017 Version
How to use the API operation 2017 version setting "Rewrite URL template"? The API operation setting "Rewrite URL template" is used to override the "URL template" setting, when constructing the final URL to call the backend service. By default, Azure will construct the final URL by appending the URL ...
2018-03-31, 2842🔥, 0💬

What Can I See on Developer Portal
What API can I see on the Developer Portal? What API you can see on the Developer Portal is depending on who you are. 1. If you are a publisher user in the "Administrator" group, you can see all APIs included in all API products. 2. If you are a publisher user but not in the "Administrator" group, y...
2018-03-31, 1237🔥, 0💬

What I You Test on Developer Portal
What API can I test on the Developer Portal? What API you can test on the Developer Portal is depending is limited to those APIs and operations that you have been given with subscription keys. 1. If you are a publisher user in the "Administrator" group, you can test all API operations included in al...
2018-03-31, 976🔥, 0💬

Add API Operation Request Body Examples
How to add request body examples to my Azure API operation to make it more user friendly? If you have created the "First API" API and "Add new user" operation as described in previous tutorials, you can follow this tutorial to add request body examples. 1. Go to the publisher dashboard of the API Ma...
2018-03-28, 4226🔥, 0💬

Test API as a Publisher Administrator
How to Test API as a Publisher Administrator? You can follow this tutorial to test an API operation as a publisher administrator. 1. Go to https://portal.azure.com with a Web browser. And log in with your company email address. 2. Find the API Management Service resource to open it. 3. Click on the ...
2018-03-28, 2441🔥, 0💬

Test API Operation Request Body Examples
How to test request body examples on my Azure API operation? If you have added some request body examples to your Azure API operation, you can follow this tutorial to test them. 1. Go to the developer portal as a publisher administrator. 2. Open the "First API" and open the operation "Add new user"....
2018-03-28, 1642🔥, 0💬

Making API More User Friendly
Where to find tutorials on Making API More User Friendly with Azure API Management Service? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Making API More User Friendly with Azure API Management Service: Add API Operation Request Body Examples...
2018-03-28, 1374🔥, 0💬

Debug API Operation Test
How to debug issues in an API Operation Test? The first step to debug an API operation issue is to review the "trace" information in the test result. 1. Repeat the test on "Add new user" operation of the "First API". 2. Click "Try it" and scroll down. 3. Click "Send". You see test result displayed. ...
2018-03-28, 1361🔥, 0💬

Add Request Query String Parameters
How to add request query string Parameters to my Azure API operation to make it more user friendly? If your API operation uses URL template parameters, the client system must call it with parameter values specified in the correct position, like: https://.../exchange-rate/USD/ EUR/2020-10-10The above...
2018-03-24, 4156🔥, 0💬

Add Request URL Template Parameters
How to add request URL Template Parameters to my Azure API operation to make it more user friendly? If your API Operation requires some key parameters, you put them as template parameters in the URL template of the operation. Using template parameters reduces the need for providing parameters in the...
2018-03-24, 3400🔥, 0💬

Using Azure API Policy
Where to find tutorials on Using API Policy with API Management Services at Azure Portal? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Using API Policy with API Management Services at Azure Portal: What Is Azure API Policy Edit API Operation...
2018-03-24, 2049🔥, 0💬

View Policy of an API Operation
How to View Policy of an API Operation? My API operation is not calling the backend service. If your API operation is not calling the backend service, you need to view the policy of the API operation to see why backend service is not called. 1. Go to the publisher dashboard of the API Management Ser...
2018-03-24, 1539🔥, 0💬

Top Level Policy for All Azure APIs
How to view and edit the top level policy for all Azure APIs? Be default, Azure automatically creates a top level policy for all APIs. In the top level policy, the "forward-request" policy statement is added in the "backend" section automatically forward client request to the backend service. But if...
2018-03-24, 1482🔥, 0💬

<< < 34 35 36 37 38 39 40 41 42 43 44 > >>   Sort: Rank