Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

decoding

num = input()
num = num[::-1]
Final_string = ''
number = ''
for i in range(len(num)):
    number = number + num[i]
    if (int(number) >= 65 and int(number) <= 90) or (int(number) >= 97 and int(number) <= 122) or (int(number) == 32):
        character = chr(int(number))
        Final_string+=character
        number = ''
print(Final_string)
Comment

PREVIOUS NEXT
Code Example
Python :: series change index pandas 
Python :: django-chartjs 
Python :: ten minute mail 
Python :: python script to sort file content 
Python :: python type checking boolean 
Python :: ajouter dans une liste python 
Python :: python class declaration 
Python :: how to add items in list in python at specific position 
Python :: python bigquery example 
Python :: python printing 
Python :: selenium check if driver is open python 
Python :: na in python 
Python :: how to convert .py into .exe through pytohn scripts 
Python :: from django.urls import path 
Python :: pandas splitting the data based on the day type 
Python :: bst in python 
Python :: data.head on terminal 
Python :: Display vowels in a string using for loop 
Python :: fro flask import Flask, request, render_template, url_for, redirect, session 
Python :: EJERCICIOS DE FOR Y WHILE en python 
Python :: proxy pool for scrapy 
Python :: perchè il metodo reverse return none 
Python :: projects for beginners in python to complete 
Python :: how to navigate to a sub html script selenium python 
Shell :: restart apache ubuntu 
Shell :: git update gitignore 
Shell :: kill process running on port mac 
Shell :: mvn clean install skip tests 
Shell :: reset local branch to remote 
Shell :: install fira code vscode ubuntu 
ADD CONTENT
Topic
Content
Source link
Name
5+1 =