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
The Following code is the C++ solution of the CodeChef's Alternative Square Pattern which is the part of DSA Leaning Series under | |
Easy Problems to Get Start | |
Contest Code:CCSTART2 Problem Code:SQALPAT | |
Link-https://www.codechef.com/CCSTART2/submit/SQALPAT | |
------------------------------------------------------------------------------------------------------- | |
#include <iostream> | |
using namespace std; |
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 pytube import YouTube | |
from tkinter.filedialog import * | |
from tkinter.messagebox import * | |
from functools import partial | |
root = Tk() | |
root.geometry('950x370') | |
root.title("RRP Downloader") |
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
import pyqrcode as df | |
from tkinter import * | |
from tkinter.filedialog import * | |
def generate(): | |
qr=entry.get() | |
destination = askdirectory() | |
filename= filename = asksaveasfilename(filetypes=[('PNG', '.png'),('SVG','.svg') | |
,('All files', '*')], defaultextension='.png') | |
a=df.create(qr) |