Skip to content

Instantly share code, notes, and snippets.

View ayush3298's full-sized avatar
🏠
Working from home

Ayush ayush3298

🏠
Working from home
View GitHub Profile
num = 1
while num <= 10:
print(num)
num += 1
if 1 > 2:
print("1 is greater than 2")
else:
print("1 is not greater than 2")
if 2 > 1:
#because 2 is greater then 1
print("2 is greater than 1")
if True:
print("Hello World! If")
#the code in if statement will only work if the statement is true.
#you can also check it like
print(2>1)
# string
blog_name = "The First Code"
# booleans
true_boolean = True
false_boolean = False
# float
price = 10.50
pie = 3.14
#or
blog_name = "thefirstcode"
def main():
print('Hello World!')
import setuptools
setuptools.setup(
name='helloworld',
version='1.0',
author='Ayush Bairagi',
author_email='test@example.com',
description='description',
packages=setuptools.find_packages(),
entry_points={