Skip to content

Instantly share code, notes, and snippets.

View ibelgin's full-sized avatar
📕
Building

Belgin ibelgin

📕
Building
View GitHub Profile
@ibelgin
ibelgin / 01_Character_Input.py
Last active September 23, 2020 09:33
Answers practicepython.org
# Create a program that asks the user to enter their name and their age.
# Print out a message addressed to them that tells them the year that they will turn 100 years old.
name , age = input("Enter Your Name -> ") , int(input("Enter Your Age -> "))
print(2020 + (100-age))
@ibelgin
ibelgin / Music_Player.py
Created September 18, 2020 04:29
Python Music Player
from tkinter import *
from tkinter.filedialog import askopenfile
from pygame import mixer
file_name = ""
window=Tk()
window.title("Music Player")
window.geometry("650x400")