Python Script to draw a simple circle using turtle
pythoPython Script to draw a simple circle using turtle you can copy and paste the code in your terminal and run it if you have any questions please let me…
pythoPython Script to draw a simple circle using turtle you can copy and paste the code in your terminal and run it if you have any questions please let me…
script to convert seconds to hours using Python 3 simple command just copy and paste in your terminal and run it. #("Times", "24", "bold italic") #("Helvetica", "16") import tkinter class…
In this post I have shared with you this script to create a math calculator using Python 3 jus copy and paste the code and run. i hope you find…
Python Script to scrape Instagram users followers just copy and paste and then run it this script import pandas as pd from instagramy.plugins.analysis import analyze_users_popularity session_id = "38566737751%3Ah7JpgePGAoLxJe%334" teams =…
# Tic Tac Toe game with GUI # using tkinter # importing all necessary libraries import random import tkinter from tkinter import * from functools import partial from tkinter import…
hello guys in this post I leave you a short piece of code so you can send text messages without having to open the application again and again public void…
hi you can use this short piece of code you can upload all the files to your dropox account just changing the routes with your data import sys import dropbox…
hello everyone in this small piece of code you will be able to convert a PDF to Excel using just your terminal You can copy and paste the code just…
hello programmers in this piece of code it will be useful to calculate the time difference in seconds if you find it useful you can write a comment >>> import…
import pysftp srv = pysftp.Connection(host="www.destination.com", username="root", password="password",log="./temp/pysftp.log") with srv.cd('public'): #chdir to public srv.put('C:\Users\XXX\Dropbox\test.txt') #upload file to nodejs/ # Closes the connection srv.close()