├── README.md ├── Help.py ├── Blog_Pricing.py ├── Offer_FAQ_Contact.py ├── Portfolio_Header.py ├── Article_About.html ├── Pricing_Help.html └── Settings_Main_Article.html /README.md: -------------------------------------------------------------------------------- 1 | # Welcome to my repository! -------------------------------------------------------------------------------- /Help.py: -------------------------------------------------------------------------------- 1 | # Sample Python commit 2 | x = 42 3 | print(x) -------------------------------------------------------------------------------- /Blog_Pricing.py: -------------------------------------------------------------------------------- 1 | def foo(): 2 | return 'bar' 3 | print(foo()) -------------------------------------------------------------------------------- /Offer_FAQ_Contact.py: -------------------------------------------------------------------------------- 1 | import random 2 | print(random.randint(1,100)) -------------------------------------------------------------------------------- /Portfolio_Header.py: -------------------------------------------------------------------------------- 1 | def foo(): 2 | return 'bar' 3 | print(foo()) -------------------------------------------------------------------------------- /Article_About.html: -------------------------------------------------------------------------------- 1 |
This is a commit.
-------------------------------------------------------------------------------- /Settings_Main_Article.html: -------------------------------------------------------------------------------- 1 |This is a commit.
--------------------------------------------------------------------------------