This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from tkinter import * | |
from tkinter.filedialog import askopenfile | |
from pygame import mixer | |
file_name = "" | |
window=Tk() | |
window.title("Music Player") | |
window.geometry("650x400") |
NewerOlder