Skip to content

Instantly share code, notes, and snippets.

View Aashishkumar123's full-sized avatar
🎯
Focusing

Aashish Kumar Aashishkumar123

🎯
Focusing
View GitHub Profile
import random
class Account:
# Construct Account object
def __init__(self, id, balance=0, annualInterestRate=3.4):
self.id = id
self.balance = balance
self.annualInterestRate = annualInterestRate
# print your output through print function
print('Hello World !!')
print(1)
print(10.12)
print(10+2j)