{"id":16314528,"url":"https://github.com/wyntonfranklin/funwithpy","last_synced_at":"2025-04-26T22:54:12.649Z","repository":{"id":113780470,"uuid":"168611920","full_name":"wyntonfranklin/funwithpy","owner":"wyntonfranklin","description":"Playing with the Python Language","archived":false,"fork":false,"pushed_at":"2019-02-25T00:26:07.000Z","size":11,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-04-26T22:54:09.806Z","etag":null,"topics":["python","python-tutorial"],"latest_commit_sha":null,"homepage":"https://wftutorials.blog/2019/02/12/fun-with-python-part-1/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/wyntonfranklin.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-01-31T23:21:15.000Z","updated_at":"2019-02-25T00:26:08.000Z","dependencies_parsed_at":null,"dependency_job_id":"e5a285de-46f4-40b6-aae8-585dc3d29e59","html_url":"https://github.com/wyntonfranklin/funwithpy","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wyntonfranklin%2Ffunwithpy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wyntonfranklin%2Ffunwithpy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wyntonfranklin%2Ffunwithpy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wyntonfranklin%2Ffunwithpy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wyntonfranklin","download_url":"https://codeload.github.com/wyntonfranklin/funwithpy/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251063751,"owners_count":21530842,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["python","python-tutorial"],"created_at":"2024-10-10T21:54:09.418Z","updated_at":"2025-04-26T22:54:12.634Z","avatar_url":"https://github.com/wyntonfranklin.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Fun with Python\n\nSome examples on using python. I created this repository to learn  or refresh myself on the Python language. You can view the blog post on it at - https://wftutorials.blog/2019/02/12/fun-with-python-part-1/\n\n## Learning Examples\n\n[**first.py**](https://github.com/wyntonfranklin/funwithpy/blob/master/first.py)\n\nVariables, types, printing, concatenation, comments.\n\n[**second.py**](https://github.com/wyntonfranklin/funwithpy/blob/master/second.py) \n\nLists, printing lists, appending lists, getting values from a list\n\n[**third.py**](https://github.com/wyntonfranklin/funwithpy/blob/master/third.py)\n\nArithmetic operations. Addition, multiplication, subtraction, division and modulus. Add multiplying variables and list.\n\n[**four.py**](https://github.com/wyntonfranklin/funwithpy/blob/master/four.py)\n\nString formating and some tuples. Formating decimal, floats and lists.\n\n[**five.py**](https://github.com/wyntonfranklin/funwithpy/blob/master/five.py)\n\nString functions. Len, index, spliting, endswith, join, format, partition.\n\n**[six.py](https://github.com/wyntonfranklin/funwithpy/blob/master/six.py)**\n\nConditional statements. If and if else. Boolean operations and if in. Is statement.\n\n**[seven.py](https://github.com/wyntonfranklin/funwithpy/blob/master/seven.py)**\n\nLoops. For loop. Range function. While loop.\n\n[**eight.py**](https://github.com/wyntonfranklin/funwithpy/blob/master/eight.py)\n\nFunctions. Function parameters.\n\n**[nine.py](https://github.com/wyntonfranklin/funwithpy/blob/master/nine.py)**\n\nClasses. Init statement. Creating methods. Create a class object.\n\n**[ten.py](https://github.com/wyntonfranklin/funwithpy/blob/master/ten.py)**\n\nDictionary. Creating dictionaries. Loop through dictionaries. Del and pop statements.\n\n[**eleven.py**](https://github.com/wyntonfranklin/funwithpy/blob/master/eleven.py)\n\nImport statements.\n\n**twelve.py** \n\nSample file for testing imports.\n\n**[thirteen.py](https://github.com/wyntonfranklin/funwithpy/blob/master/thirteen.py)**\n\nSample file for special import\n\n**[fourteen.py](https://github.com/wyntonfranklin/funwithpy/blob/master/fourteen.py)**\n\nSample file for special import\n\n\n\n## Working Examples\n\n**[multiply.py](https://github.com/wyntonfranklin/funwithpy/blob/master/multiply.py)**\n\nRequests two inputs from the user and multiplies them.\n\n**[bank_account.py](https://github.com/wyntonfranklin/funwithpy/blob/master/bank_account.py)**\n\nSimulates some banking account features.\n\n**[simple_chat.py](https://github.com/wyntonfranklin/funwithpy/blob/master/simple_chat.py)**\n\nA simple chat application.\n\n[**note_book.py**](https://github.com/wyntonfranklin/funwithpy/blob/master/note_book.py)\n\nWrites a file based on input line by line.\n\n[**websites_title.py**](https://github.com/wyntonfranklin/funwithpy/blob/master/websites_title.py)\n\nGets the title of a inputed website.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwyntonfranklin%2Ffunwithpy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwyntonfranklin%2Ffunwithpy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwyntonfranklin%2Ffunwithpy/lists"}