I will setup CICD with Jenkins and argocd environment docker k8s and VMS. I will using ansible and terraform if need
- docker
- k8s
- Jenkins
- argocd
- etc
I will setup CICD with Jenkins and argocd environment docker k8s and VMS. I will using ansible and terraform if need
I can develop a Python application, script or bot for Ethereum and any compatible blockchain (Polygon, Arbitrum, Axie/Ronin, BSC, ...).
I can develop a library and integrate it into your own Python application, script or bot.
I can request any crypto REST API, including:
I can query for you Ethereum nodes through a web3 interface, in Python.
This means I can develop a python app/script/bot that reads for you information from the blockchain and/or send transactions concerning ETH, ERC20, ERC721, NFT tokens, ...
This can be for simple transactions, but also using smart contracts or protocols including 0x, 1inch, dex (Uniswap, ...) DeFi protocols, ...
Ex tech lead in major European banks (BNP PARIBAS, CREDIT AGRICOLE) for more than 15+ years, in London and Paris, I provide now digital services for individuals and companies of any size.
In contrast to most of other sellers, I provide corporate grade solutions with clean and robust code, based on the analysis of your requirements.
Just send me your requirements after reading the FAQ below and I'll create a custom offer.
I have more than 15+ years of experience in software development for corporate and investment banks in London and Paris. I worked in different technical environments, but mainly Java, Python, SQL, Bash. Today I work in the Python and blockchain ecosystems and offer my skills and rigor to individuals or companies of any size.
I will be available here for any Game Service you need. So don't waste any time and let's get to working. :)
Game type
Game engine
Platform type
Genre
Plugins
In this program, you will learn to add two numbers and display it using print() function.
Example Program.
# Store input numbers
num1 = input('Enter first number: ')
num2 = input('Enter second number: ')
# Add two numbers
sum = float(num1) + float(num2)
# Display the sum
print('The sum of {0} and {1} is {2}'.format(num1, num2, sum))
Output
The sum of 1.5 and 6.3 is 7.8
To print string in python, you have to ask from user to enter a string and print it back on the output screen using the print() statement as shown in the program given below.
Following python program ask from the user to enter the string to print that string as output of the program:
# Python Program - Print String
print("Enter 'x' for exit.");
string = input("Enter string: ");
if string == 'x':
exit();
else:
print("\nYou entered:",string);