HERE YOU WILL GET ANSWER OF YOUR QUESTIONS AND NEW THINGS THAT WILL INNOVATE YOUR MIND ..BASICALLY IN PYTHON AND C
Sunday, March 22, 2020
Question hub:windows 10 new file , folder
NEW FOLDER:WINDOWS 10
aap pahle jahan pe ho, mouse ko right click karein aur isme new> folder ka option choos karein
phir file ka naam daal kar enter karein.apka new folder taiyar ho gaya hai.
Saturday, March 21, 2020
qpython ::make a http server in your phone with python
here is the qpython3 script to run a simple HTTP server in your device..
put a file of name index.html in same directory in which this script is placed and run...and lo..server is running on local host..port 8080 http://localhost:8080
server.py
put a file of name index.html in same directory in which this script is placed and run...and lo..server is running on local host..port 8080 http://localhost:8080
server.py
import http.server
import socketserver
PORT = 8080
Handler = http.server.SimpleHTTPRequestHandler
import socketserver
PORT = 8080
Handler = http.server.SimpleHTTPRequestHandler
with socketserver.TCPServer(("", PORT), Handler) as httpd:
print("serving at port", PORT)
httpd.serve_forever()
print("serving at port", PORT)
httpd.serve_forever()
Subscribe to:
Comments (Atom)
Implement stsStr Leetcode solution
28. Implement strStr() Easy Implement strStr() . Given two strings needle and haystack , return the index of the first occurrence of...
-
php apache setup on android with Termux (without root) ***downloading and intalling termux go to given link and choose a suitable version of...
-
Reverse a string using Stack Easy You are given a string S , the task is to reverse the string using stack. Example 1: Input: S=...
