Skip to content

Instantly share code, notes, and snippets.

View dineshTheCoder's full-sized avatar

dineshTheCoder

View GitHub Profile
https://www.udemy.com/cart/checkout/express/bundle/1670/?couponCode=d7dc83cb-03a7-4008-8df8-15b9b5a21a09
https://d1.awsstatic.com/training-and-certification/docs-dev-associate/AWS_certified_developer_associate_blueprint.89cc597bd0b8b65fd99109938d0ab888b59c0376.pdf
https://aws.amazon.com/whitepapers/
https://d1.awsstatic.com/whitepapers/core-tenets-of-iot1.ad065829826569e189e184cfd4f5ea9c90d9ba54.pdf
https://aws.amazon.com/training/course-descriptions/developing/
https://www.quora.com/How-did-you-prepare-for-AWS-Certified-Solutions-Architect-Associate-Level-certification/answer/Krishna-Srinivasan-6
https://www.java2blog.com/aws-certification-benefits/
@dineshTheCoder
dineshTheCoder / TopGearPythonA1
Last active December 21, 2022 07:10
TopGearPythonA1
Python Assignment
(Solved using Python 2.7)
========================================================================================================================
1. Given a list, url = [www.annauniv.edu, www.google.com, www.ndtv.com, www.website.org, www.bis.org.in, www.rbi.org.in];
Sort the list based on the top level domain (edu, com, org, in) using custom sorting
========================================================================================================================
topDomainList=["edu","com","org","in"]
@dineshTheCoder
dineshTheCoder / PythonUsefulLinks
Created October 5, 2017 05:52
PythonUsefulLinks
@dineshTheCoder
dineshTheCoder / TopGearPythonAssignment3X
Created October 4, 2017 06:42
TopGearPythonAssignment3X
=======================================================================================================================================
40 Dictionary and Date & Time Using time module perform following operations.
a) Print current time for every 5 seconds up to 1 minute time interval.
b) Write a program to find out how much CPU time is taken for the execution of above(32.a) program.
=======================================================================================================================================
import time
#a)
print "current time for every 5 seconds up to 1 minute time interval.\n"
total_sec=60 #in seconds
while total_sec >0:
@dineshTheCoder
dineshTheCoder / TopGearPythonAssignment2X
Created October 4, 2017 06:33
TopGearPythonAssignment2X
========================================================================================================================================
Using the built in functions on Numbers perform following operations
a) Round of the given floating point number example : n=0.543 then round it next decimal number , i.e n=1.0 Use round() function
b) Find out the square root of a given number. ( use sqrt(x) function)
c) Generate random number between 0, and 1 ( use random() function)
d) Generate random number between 10 and 500. ( use uniform() function)
e) Explore all Math and Random module functions on a given number/ List.
( Refer to tutorial for Math & Random functions list)
========================================================================================================================================
@dineshTheCoder
dineshTheCoder / TopGearPythonAllAssignments
Created September 25, 2017 11:39
TopGearPythonAllAssignments
Sl No Topic Program Assignment
1 Python program basic Write a program to add , Subtract, Multiply, and divide 2 numbers
2 Basic Operators Write a program to find the biggest of 3 numbers ( Use If Condition )
3 Basic operators Write a program to find given number is odd or Even
4 Basic operators Write a program to find the number is Prime or not.
@dineshTheCoder
dineshTheCoder / TopGearPythonAssignment1X.txt
Last active September 21, 2017 09:11
TopGearPythonAssignment1X
=============================================================================================================================
Write a program to add , Subtract, Multiply, and divide 2 numbers
=============================================================================================================================
a=10
b=20
add=a+b
sub=a-b