I am trying to produce A Caesar cipher is a simple substitution cipher ,
that would code For example, if the key value is 2, the word “Sourpuss”
would be encoded as “Uqwtrwuu
Here is my code: ( but i keep getting a ERROR) It works for me Last week but
for some reason it isnt work for me right now.
Help If u can please i got this code to work for the top half
*
**
***
*
**
***
*
**
def main():
i=1
while i <=10:
j=1
while j<=i:
print '*',
j=j+1
print
This is what i have so far an this is not what i want it to do
"NO this isnt homework" i am trying to learn this myself
#!/usr/bin/env python
#
#Author: J White
#Python 2.5.2
#
howmany = int(raw_input('How many lines '))
rhowmany = howmany
strout = '*'
while howmany > 0:
print strout
Would anyone know how to Write an application that displays the following
patterns separately, one below the other. Use for or while loops to generate
the patterns. All asterisks (*) should be printed by a single statement of
print( '*' ); which causes the asterisks to print side by side. A stateme
Good Morning Everyone,
I am having a little issue with Python,
Hopefully Someone Can Help Me
I am trying to Develop a Python program that converts a single fuel rating
from mpg to lp100km.
So far ive come up with this code. But it seems not to be working, Can
someone please help me figure
I dunno how this works but hopefully someone can help me
I am trying to build a program in Python but for someone i can not get what
i am trying to build WORK
by email you guys is there a way i can get some help some pointer on the
program i am trying to solve
Thanks