برنامههای جالب خود را برای ما بفرست تا در پایلی با همه به اشتراک گذاشته بشه.
فایل برنامهات و یک تصویر از اجرای برنامه (gif.، عکس، یا فیلم) به صورت یک دونه فایل زیپشده (zip.) را با این فرم بفرست.
برای هر کاربر هم در هر ماه تنها امکان نمایش یک برنامه وجود داره.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
while True: ask=input('Do you want to continue ? y/n ? :') if ask=='y' or ask=='Y': answer=input('Fahrenheit to Celsius = f or Celcius to Fahrenheit = c :') if answer=='c' or answer=='C': o=float(input('Enter degrees Celsius : ')) v=o*1.8 m=v+32 print('%d Celsius degree is%d Farenheit degree ' %(o,m)) print('.....................................................................................................................................') elif answer=='f' or answer=='F': o=float(input('Enter degrees Fahrenheit: ')) v=o-32 m=v/1.8 print('%d Farenheit degree is%d Celsius degree ' %(o,m)) print('.....................................................................................................................................') else: print('invalid character') elif ask=='n' or ask=='N': print('Bye') break |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
from tkinter import * from tkinter import ttk root = Tk() root.title('Your Colors') root.geometry('800x400') root['background'] = 'darkslategray' aLabel = Label(root, text="** کدوم فصل رو دوست داری ؟ **" , font = 'tahoma 20', bg = 'darkslategray' , fg = 'white') #text label aLabel.pack() def red(): aLabel.configure(text = ':D :D :D :D :D :D :D', fg = 'red', font = 'tahoma 20 ') def blue(): aLabel.configure(text = ':| :| :| :| :| :| :|', fg = 'blue', font = 'tahoma 20 ') def green(): aLabel.configure(text = ':) :) :) :) :) :) :)', fg = 'green', font = 'tahoma 20 ') def yellow(): aLabel.configure(text = ':( :( :( :( :( :( :(', fg = 'yellow', font = 'tahoma 20 ') action = ttk.Button(root, text="قرمز", command=red) action2 = ttk.Button(root, text = 'آبی', command = blue) action3 = ttk.Button(root, text = 'سبز', command = green) action4 = ttk.Button(root, text = 'زرد', command = yellow) action.place(x = 220 , y = 100) action2.place(x = 300 , y = 100) action3.place(x = 380 , y = 100) action4.place(x = 460 , y = 100) exit = ttk.Button(root, text = 'خروج', command = root.destroy).place(x = 340 , y = 150) root.mainloop() |