Science Score: 18.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
✓CITATION.cff file
Found CITATION.cff file -
○codemeta.json file
-
○.zenodo.json file
-
○DOI references
-
○Academic publication links
-
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (2.0%) to scientific vocabulary
Last synced: 10 months ago
·
JSON representation
·
Repository
My Python Projects
Basic Info
Statistics
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
- Releases: 0
Created over 2 years ago
· Last pushed over 2 years ago
Metadata Files
Readme
Citation
README.md
Projects I've made using Pyhton Language!!
Some of the bigger projects include: 1) Algorithm to mimic face book mutual friend suggestion (FacebookNetwork) 2) Drawing of a rocket using the turtle drawing feature (TurtleRocket) 3) A digital Version of the game Rummy (RummyGame) 4) A clean up game similar to the card game go fish (cleanUp_Game)
Owner
- Login: Reemaalwa
- Kind: user
- Repositories: 1
- Profile: https://github.com/Reemaalwa
Citation (Citation_Maker.py)
def bibformat(author,title,city,publisher,year):
'''returns a string of the form of a citation'''
result = f'{author} ({year}). {title}. {city}: {publisher}.'
return (result)
######################################################################
def bibformat_display():
''' prompts the user for a book title, name of the author, year of
publication, publisher and the headquarter city of the publisher. The
function should then print the information about the book in the same format
as bib_format()'''
title = str(input("Enter the book title: "))
author = str(input("Enter the author of the book: "))
year = int(input("Enter the year the book was published: "))
publisher = str(input("Enter the name of the publisher: "))
city = str(input("In what city are the headquarters: "))
x = bibformat(author,title,city,publisher,year)
return (x)